mirror of
https://gitlab.com/Scribble/gdlenhanced.git
synced 2026-08-17 14:23:04 -04:00
15 lines
182 B
C
15 lines
182 B
C
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifdef _WINDLL
|
||
|
|
|
||
|
|
#define DECLTYPE __declspec(dllexport)
|
||
|
|
|
||
|
|
extern "C"
|
||
|
|
{
|
||
|
|
DECLTYPE int _IsStarted();
|
||
|
|
DECLTYPE int _StartServer();
|
||
|
|
DECLTYPE void _StopServer();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|