19 lines
249 B
Plaintext
19 lines
249 B
Plaintext
|
#ifndef _DLL_H_
|
||
|
#define _DLL_H_
|
||
|
|
||
|
#if BUILDING_DLL
|
||
|
#define DLLIMPORT __declspec(dllexport)
|
||
|
#else
|
||
|
#define DLLIMPORT __declspec(dllimport)
|
||
|
#endif
|
||
|
|
||
|
class DLLIMPORT DllClass
|
||
|
{
|
||
|
public:
|
||
|
DllClass();
|
||
|
virtual ~DllClass();
|
||
|
void HelloWorld();
|
||
|
};
|
||
|
|
||
|
#endif
|