Skip to content

Commit 9c4c8c8

Browse files
committed
Remove argument decoration that appears unsupported on mingw
1 parent d8ea33f commit 9c4c8c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pgevent/pgevent.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ HANDLE g_module = NULL; /* hModule of DLL */
2929
char event_source[256] = "PostgreSQL";
3030

3131
/* Prototypes */
32-
HRESULT DllInstall(BOOL bInstall, __in_opt LPCWSTR pszCmdLine);
32+
HRESULT DllInstall(BOOL bInstall, LPCWSTR pszCmdLine);
3333
STDAPI DllRegisterServer(void);
3434
STDAPI DllUnregisterServer(void);
3535
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)
4040

4141
HRESULT
4242
DllInstall(BOOL bInstall,
43-
__in_opt LPCWSTR pszCmdLine)
43+
LPCWSTR pszCmdLine)
4444
{
4545
size_t ret;
4646

0 commit comments

Comments
 (0)