You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
309 B
19 lines
309 B
#ifndef _MSC_VER
|
|
# define winexport
|
|
#else
|
|
# ifdef autoexport_EXPORTS
|
|
# define winexport
|
|
# else
|
|
# define winexport __declspec(dllimport)
|
|
# endif
|
|
#endif
|
|
|
|
class Hello
|
|
{
|
|
public:
|
|
static winexport int Data;
|
|
void real();
|
|
static void operator delete[](void*);
|
|
static void operator delete(void*);
|
|
};
|