diff options
author | Bruce Momjian | 2012-11-07 20:01:18 +0000 |
---|---|---|
committer | Bruce Momjian | 2012-11-07 20:01:25 +0000 |
commit | aa69670e4296321b51251d34e9bd2c4bc17aab75 (patch) | |
tree | 6d74815cbf11b14c6a25e80115187f443af28839 | |
parent | 4ee5c40b06f098910ed0fc5fd72fb2744776ccbb (diff) |
Add URLs to document why DLLIMPORT is needed on Windows.
Per email from Craig Ringer
-rw-r--r-- | src/include/port/win32.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/port/win32.h b/src/include/port/win32.h index b357663d63b..7d059133124 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -65,7 +65,13 @@ #define USES_WINSOCK -/* defines for dynamic linking on Win32 platform */ +/* defines for dynamic linking on Win32 platform + * + * http://support.microsoft.com/kb/132044 + * http://msdn.microsoft.com/en-us/library/8fskxacy(v=vs.80).aspx + * http://msdn.microsoft.com/en-us/library/a90k134d(v=vs.80).aspx + */ + #if defined(WIN32) || defined(__CYGWIN__) #ifdef BUILDING_DLL |