Commit 9c4c8c84 authored by Magnus Hagander's avatar Magnus Hagander

Remove argument decoration that appears unsupported on mingw

parent d8ea33f2
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment