Source code of Windows XP (NT5)
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.

27 lines
762 B

  1. /****************************************************************************************************************
  2. FILENAME: DevIo.h
  3. COPYRIGHT 2001 Microsoft Corporation and Executive Software International, Inc.
  4. DESCRIPTION:
  5. Prototypes for call to defrag hooks.
  6. ***************************************************************************************************************/
  7. #define STATUS_ALREADY_COMMITTED ((NTSTATUS)0xC0000021L)
  8. #define STATUS_INVALID_PARAMETER ((NTSTATUS)0xC000000DL)
  9. BOOL
  10. WINAPI
  11. ESDeviceIoControl(
  12. HANDLE hDevice,
  13. DWORD dwIoControlCode,
  14. LPVOID lpInBuffer,
  15. DWORD nInBufferSize,
  16. LPVOID lpOutBuffer,
  17. DWORD nOutBufferSize,
  18. LPDWORD lpBytesReturned,
  19. LPOVERLAPPED lpOverlapped
  20. );