summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/libpqdll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/libpq/libpqdll.c')
-rw-r--r--src/interfaces/libpq/libpqdll.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/interfaces/libpq/libpqdll.c b/src/interfaces/libpq/libpqdll.c
new file mode 100644
index 00000000000..aa678066577
--- /dev/null
+++ b/src/interfaces/libpq/libpqdll.c
@@ -0,0 +1,6 @@
+#define WIN32_LEAN_AND_MEAN
+#include <windows.h>
+BOOL WINAPI DllMain( HINSTANCE hinstDLL, DWORD fdwReason,
+ LPVOID lpReserved ){
+ return (TRUE);
+}