Skip to content
Snippets Groups Projects
Commit f33b931f authored by rswindell's avatar rswindell
Browse files

Eliminatd SMBDLL usage, define SMB_IMPORTS or SMB_EXPORTS instead.

parent 937f10ac
No related branches found
No related tags found
No related merge requests found
...@@ -53,11 +53,11 @@ ...@@ -53,11 +53,11 @@
#else #else
#define SMBCALL #define SMBCALL
#endif #endif
#ifdef SMBDLL /* SMBLIB contained in DLL */ #if defined(SMB_IMPORTS) || defined(SMB_EXPORTS)
#ifdef SMB_EXPORTS #if defined(SMB_IMPORTS)
#define SMBEXPORT __declspec( dllexport )
#else
#define SMBEXPORT __declspec( dllimport ) #define SMBEXPORT __declspec( dllimport )
#else
#define SMBEXPORT __declspec( dllexport )
#endif #endif
#else /* self-contained executable */ #else /* self-contained executable */
#define SMBEXPORT #define SMBEXPORT
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment