blob: fd443374cba01a9541b8cf97870166f77b5dac3d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "stdafx.h"
/////////////////////////////////////////////////////////////////////////////////////////
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD reason, LPVOID reserved)
{
mdbx_dll_handler(hInstDLL, reason, reserved);
return TRUE;
}
|