ddawson
Members
-
Joined
-
Last visited
Solutions
-
ddawson's post in Simconnect example requested - sending data to FSX was marked as the answerDai,
Source code for my fuel dump gauge is here:
www.douglassdawson.ca
Doug
Edit:
I put the source code for the battery charger here:
www.douglassdawson.ca/files/dsd_battery_charger_sourcecode.zip
-
ddawson's post in GDI+ ESP Samples was marked as the answerDai,
A while ago, I put the in-process sample here:
www.douglassdawson.ca/files/ESPIn-processDLLadd-on.zip
I have the GDI+ sample as well, I will post it or e-mail it once I get home this evening.
Doug
Edit:
www.douglassdawson.ca/files/ESPDrawing GaugesUsingGDI+.zip
-
ddawson's post in Warning: macro redefinition was marked as the answerYou need to #undef the macros after each sub-gauge:
#define GAUGE_NAME "cpc\0"
#define GAUGEHDR_VAR_NAME gaugehdr_cpc
#define GAUGE_W 20
#include "flighteng\dfd_cpc.cpp"
#undef GAUGE_NAME
#undef GAUGEHDR_VAR_NAME
#undef GAUGE_W //for completeness only, seeing as you're using the same value again