Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

53 lines
848 B

/****************************** Module Header ******************************\
* Module Name: async.h
*
* Copyright (c) 1991, Microsoft Corporation
*
* Defines types and functions used by async module.
*
* History:
* 06-29-92 Davidc Created.
\***************************************************************************/
//
// Function prototypes
//
HANDLE
CreateAsync(
BOOL InitialState
);
VOID
DeleteAsync(
HANDLE AsyncHandle
);
BOOL
ReadFileAsync(
HANDLE hFile,
LPVOID lpBuffer,
DWORD nBytesToRead,
HANDLE AsyncHandle
);
BOOL
WriteFileAsync(
HANDLE hFile,
LPVOID lpBuffer,
DWORD nBytesToWrite,
HANDLE AsyncHandle
);
HANDLE
GetAsyncCompletionHandle(
HANDLE AsyncHandle
);
DWORD
GetAsyncResult(
HANDLE AsyncHandle,
LPDWORD BytesTransferred
);