Exist any directive to differentiate a code HMG to HMGextend ?
E.g:
#ifndef __HMG__EXTEND
MEMVAR _HMG_SYSDATA
#endif
Thanks
Directive #define to differentiate HMG to HMGEXTEND
Moderator: Rathinagiri
-
- Posts: 281
- Joined: Sat May 18, 2019 2:11 pm
- DBs Used: Visual FoxPro, FoxPro
- Location: United States of America
Re: Directive #define to differentiate HMG to HMGEXTEND
Hi,
You may want to try the following:
Regards,
Red2
You may want to try the following:
Code: Select all
#ifdef __HMG__ // The constant __HMG__ identifies "HMG Extended" version.
...
#else
...
#endif
Red2
Re: Directive #define to differentiate HMG to HMGEXTEND
Thanks Red2. I Will try.
- srvet_claudio
- Posts: 2220
- Joined: Thu Feb 25, 2010 8:43 pm
- Location: Uruguay
- Contact:
Re: Directive #define to differentiate HMG to HMGEXTEND
Hi,
See also
#ifdef _HMG_OFFICIAL_
See also
#ifdef _HMG_OFFICIAL_
Re: Directive #define to differentiate HMG to HMGEXTEND
Thanks Claudio.