CommonLib
Loading...
Searching...
No Matches
Preprocessor.h
Go to the documentation of this file.
1#pragma once
2
3#define IMPORT_FUNC(LIBRARY_NAME, FUNCTION_NAME)
4 GetProcAddress(LoadLibrary(TEXT(LIBRARY_NAME)), FUNCTION_NAME)
5
6#define EXPORT_FUNC extern "C" __declspec(dllexport)
7
8#define NAKED_FUNC __declspec(naked)