mirror of
https://github.com/monoxgas/Koppeling
synced 2026-06-06 16:14:35 +00:00
18 lines
296 B
C++
18 lines
296 B
C++
#include <Windows.h>
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
// Return TRUE because this is the real DLL
|
|
|
|
extern "C" __declspec(dllexport) BOOL Static()
|
|
{
|
|
return TRUE;
|
|
};
|
|
|
|
extern "C" __declspec(dllexport) BOOL Dynamic()
|
|
{
|
|
return TRUE;
|
|
}; |