Compilation fix for old SDK in wxFileSystemWatcher MSW code.
PULONG_PTR is older SDK so use "LONG_PTR *" which we already define in our wx/msw/wrapwin.h in any case. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62476 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -179,7 +179,7 @@ public:
|
||||
wxCHECK_MSG( overlapped != NULL, false,
|
||||
"Null out parameter 'overlapped'");
|
||||
|
||||
int ret = GetQueuedCompletionStatus(m_iocp, count, (PULONG_PTR)watch,
|
||||
int ret = GetQueuedCompletionStatus(m_iocp, count, (ULONG_PTR *)watch,
|
||||
overlapped, INFINITE);
|
||||
if (!ret)
|
||||
{
|
||||
|
Reference in New Issue
Block a user