Link to home
Start Free TrialLog in
Avatar of JoseDavila
JoseDavilaFlag for United States of America

asked on

Need updated code to replace the keyword 'huge'

Visual C++ Code:
ifdef __DLL__
#            define EXPORT _export
#      else // __DLL__
#            ifdef __ZTC__
#                  define EXPORT
#            else
#                  define EXPORT huge
#            endif
#      endif // __DLL__
#else
#      define EXPORT
#endif // _WINDOWS

Debug Error:
c:\documents and settings\beckert\my documents\9500\ui_win.hpp(124) : error C4226: nonstandard extension used : 'huge' is an obsolete keyword

Any suggestions
ASKER CERTIFIED SOLUTION
Avatar of hes
hes
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial