Fixed check_async_list calling convention.

This commit is contained in:
Alexandre Julliard 2002-01-02 21:50:44 +00:00
parent 2cc54c8c49
commit 4c03649d0c
2 changed files with 3 additions and 3 deletions

View file

@ -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 )

View file

@ -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); */