17 lines
524 B
C
17 lines
524 B
C
#ifndef EXPORTS_H
|
|
#define EXPORTS_H
|
|
|
|
#include "Imports.h"
|
|
|
|
/************************************************************************************
|
|
Exported Function Prototypes
|
|
************************************************************************************/
|
|
|
|
#ifdef BUILD_LIB
|
|
extern "C" __declspec(dllexport) int _gui_guiinit(int argc, char* argv[]);
|
|
extern "C" __declspec(dllexport) void* _gui_sendmessage(GUIMSG type, void* param1, void* param2);
|
|
#endif
|
|
|
|
|
|
#endif // EXPORTS_H
|