mirror of
https://github.com/postgres/postgres.git
synced 2025-11-21 00:42:43 +03:00
9 lines
146 B
C
9 lines
146 B
C
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
BOOL WINAPI
|
|
DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
|
|
LPVOID lpReserved)
|
|
{
|
|
return TRUE;
|
|
}
|