14 lines
213 B
C
14 lines
213 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef ImportLibNative_EXPORTS
|
||
|
# define nativeAPI __declspec(dllexport)
|
||
|
#else
|
||
|
# define nativeAPI __declspec(dllimport)
|
||
|
#endif
|
||
|
|
||
|
class nativeAPI ImportLibNative
|
||
|
{
|
||
|
public:
|
||
|
static void Message();
|
||
|
};
|