21 lines
217 B
C
21 lines
217 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef _IPC_EXPORT_
|
||
|
|
||
|
#ifdef WIN32
|
||
|
|
||
|
#define IPC_EXPORT __declspec( dllexport )
|
||
|
|
||
|
#endif // WIN32
|
||
|
|
||
|
#else
|
||
|
|
||
|
#ifdef WIN32
|
||
|
|
||
|
#define IPC_EXPORT __declspec( dllimport )
|
||
|
|
||
|
#endif // WIN32
|
||
|
|
||
|
#endif // _IPC_EXPORT_
|
||
|
|