Files
Nick Landers c661ae3c46 Initial Commit
2020-02-18 14:03:51 -07:00

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;
};