gdle/Source/ServerAPI.h
2018-03-29 17:01:57 -04:00

15 lines
No EOL
182 B
C

#pragma once
#ifdef _WINDLL
#define DECLTYPE __declspec(dllexport)
extern "C"
{
DECLTYPE int _IsStarted();
DECLTYPE int _StartServer();
DECLTYPE void _StopServer();
};
#endif