From: Vadim Zeitlin <vadim@wxwidgets.org>
Date: Thu, 12 Feb 2004 01:00:38 +0000 (+0000)
Subject: compilation fix (PASCAL should be inside the parenthesis in typedef declaration)
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fe16045d95f7eaa8c9b770962bb8375680e61329

compilation fix (PASCAL should be inside the parenthesis in typedef declaration)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25755 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/src/msw/gsockmsw.c b/src/msw/gsockmsw.c
index 68d3d5f975..246ae71c82 100644
--- a/src/msw/gsockmsw.c
+++ b/src/msw/gsockmsw.c
@@ -99,7 +99,7 @@ wxCreateHiddenWindow(LPCTSTR *pclassname, LPCTSTR classname, WNDPROC wndproc);
 #error "MAXSOCKETS is too big!"
 #endif
 
-typedef int PASCAL (*WSAAsyncSelectFunc)(SOCKET,HWND,u_int,long);
+typedef int (PASCAL *WSAAsyncSelectFunc)(SOCKET,HWND,u_int,long);
 
 /* Global variables */