blob: 77bcb8222bf2469006b1b5f912916d949b713859 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#ifdef ImportLibNative_EXPORTS
# define nativeAPI __declspec(dllexport)
#else
# define nativeAPI __declspec(dllimport)
#endif
class nativeAPI ImportLibNative
{
public:
static void Message();
};
|