|
LibFormat
Шаблон пользовательской библиотеки
#ifdef _WIN32
#include "..\preproc.h"
#include <windows.h>
char* slash = "\\";
#endif
#ifdef __linux__
#include "../preproc.h"
char* slash = "/";
#endif
void* __declspec (dllexport) func_name(int argc, string* args, gvars_t* gvars)
{
//функционал
}
|