mirror of
https://bitbucket.org/Ryfon/mux.git
synced 2026-05-01 16:39:50 -05:00
19 lines
350 B
C
19 lines
350 B
C
#ifndef _CONTROLDEF_H_
|
|
#define _CONTROLDEF_H_
|
|
|
|
#ifdef CONTROLAPP_EXPORT
|
|
// DLL library project uses this
|
|
#define CONTROLAPP_ENTRY __declspec(dllexport)
|
|
#else
|
|
#ifdef CONTROLAPP_IMPORT
|
|
// client of DLL uses this
|
|
#define CONTROLAPP_ENTRY __declspec(dllimport)
|
|
#else
|
|
// static library project uses this
|
|
#define CONTROLAPP_ENTRY
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
#endif |