Fixed check_async_list calling convention.
This commit is contained in:
parent
2cc54c8c49
commit
4c03649d0c
|
@ -48,7 +48,7 @@ typedef struct async_private
|
|||
struct async_private *prev;
|
||||
} async_private;
|
||||
|
||||
extern void check_async_list(LPOVERLAPPED ov, DWORD status);
|
||||
extern void WINAPI check_async_list(LPOVERLAPPED ov, DWORD status);
|
||||
|
||||
/* locale-independent case conversion */
|
||||
inline static char FILE_tolower( char c )
|
||||
|
|
|
@ -78,8 +78,8 @@ static void finish_async(async_private *ovp, DWORD status)
|
|||
*
|
||||
* Process a status event from the server.
|
||||
*/
|
||||
void check_async_list(LPOVERLAPPED overlapped, DWORD status)
|
||||
{
|
||||
void WINAPI check_async_list(LPOVERLAPPED overlapped, DWORD status)
|
||||
{
|
||||
async_private *ovp;
|
||||
|
||||
/* fprintf(stderr,"overlapped %p status %x\n",overlapped,status); */
|
||||
|
|
Loading…
Reference in New Issue