R
Rob Richardson
Greetings!
I am writing components that will be used on both WinXP desktop apps and
WinCE PocketPC apps. If there is code that will differ for the two
platforms (such as form size), is there a constant or something available
that I can use to wrap code in?
#if UNKNOWN_PLATFORM_FLAG_IS_CE
do_ce_thing();
#else
do_xp_thing();
#endif
Thanks!
Rob Richardson
I am writing components that will be used on both WinXP desktop apps and
WinCE PocketPC apps. If there is code that will differ for the two
platforms (such as form size), is there a constant or something available
that I can use to wrap code in?
#if UNKNOWN_PLATFORM_FLAG_IS_CE
do_ce_thing();
#else
do_xp_thing();
#endif
Thanks!
Rob Richardson