mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 16:30:53 +01:00
13 lines
125 B
C
13 lines
125 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Server.h"
|
||
|
|
|
||
|
|
#if _WIN32
|
||
|
|
|
||
|
|
#define EXPORT extern "C" __declspec(dllexport)
|
||
|
|
|
||
|
|
#else
|
||
|
|
|
||
|
|
#define EXPORT
|
||
|
|
|
||
|
|
#endif
|