diff options
author | Magnus Hagander | 2011-10-25 19:30:53 +0000 |
---|---|---|
committer | Magnus Hagander | 2011-10-25 19:30:53 +0000 |
commit | 9c4c8c8468bfdcfba67a9e0bd015843dab949dbf (patch) | |
tree | 6c665732d18eb7e351c9a05109fe95c7626c6f1a | |
parent | d8ea33f2c02721c89c2434b9fda170afb7fe4999 (diff) |
Remove argument decoration that appears unsupported on mingw
-rw-r--r-- | src/bin/pgevent/pgevent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pgevent/pgevent.c b/src/bin/pgevent/pgevent.c index d4d505c53f..5b9b0d32d7 100644 --- a/src/bin/pgevent/pgevent.c +++ b/src/bin/pgevent/pgevent.c @@ -29,7 +29,7 @@ HANDLE g_module = NULL; /* hModule of DLL */ char event_source[256] = "PostgreSQL"; /* Prototypes */ -HRESULT DllInstall(BOOL bInstall, __in_opt LPCWSTR pszCmdLine); +HRESULT DllInstall(BOOL bInstall, LPCWSTR pszCmdLine); STDAPI DllRegisterServer(void); STDAPI DllUnregisterServer(void); BOOL WINAPI DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved); @@ -40,7 +40,7 @@ BOOL WINAPI DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) HRESULT DllInstall(BOOL bInstall, - __in_opt LPCWSTR pszCmdLine) + LPCWSTR pszCmdLine) { size_t ret; |