Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: shout on September 09, 2005, 02:11 PM

Title: Macros
Post by: shout on September 09, 2005, 02:11 PM
Confused!


#ifdef STUFF_EXPORTS
#define STUFF_API __declspec(dllexport)
#else
#define STUFF_API __declspec(dllimport)
#endif

#ifdef STUFF_EXPORTS
#define STUFF_C_API __declspec(dllexport) extern "C"
#else
#define STUFF_C_API __declspec(dllimport) extern "C"
#endif


Now lets say I have function n:

STUFF_C_API DWORD n(void *N);

That wraps:

class STUFF_API Cn
{
...
}

It gives me syntax errors. However, the following works.

__declspec(dllexport) extern "C" DWORD n(void *N);

class __declspec(dllexport) Cn
{
...
}

The STUFF_EXPORTS is defined.

The compilers shitfits:
error C2146: syntax error : missing ';' before identifier 'DWORD'
error C2501: 'STUFF_C_API' : missing storage-class or type specifiers
error C2146: syntax error : missing ';' before identifier 'DWORD'
Title: Re: Macros
Post by: R.a.B.B.i.T on September 09, 2005, 05:35 PM
Seeing as how DWORD isn't used in any of the code you showed...well...I hope you get my drift.
Title: Re: Macros
Post by: shout on September 09, 2005, 11:16 PM
Quote from: rabbit on September 09, 2005, 05:35 PM
Seeing as how DWORD isn't used in any of the code you showed...well...I hope you get my drift.

I ment to put DWORD before the n()
Title: Re: Macros
Post by: R.a.B.B.i.T on September 10, 2005, 05:14 PM
If I'm remembering last year correctly, the defines of STUFF_C_API won't include the "extern "C"".
Title: Re: Macros
Post by: Kp on September 10, 2005, 08:30 PM
Post the preprocessor output.  It'll be easier to debug that than to try to guess what your preprocessor is doing.
Title: Re: Macros
Post by: shout on September 13, 2005, 02:09 PM
I forgot to include the header file the macro was in :/.