Rawlapi.dll -
Compile with MinGW or Visual Studio:
extern "C" __declspec(dllexport) void SomeFunction() { // Your code here } rawlapi.dll
// example.cpp #include <windows.h> BOOL APIENTRY DllMain(HMODULE hModule, DWORD reason, LPVOID lpReserved) { switch (reason) { case DLL_PROCESS_ATTACH: case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; } Compile with MinGW or Visual Studio: extern "C"








