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