Leaked source code of windows server 2003
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.

39 lines
523 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. DISKIO.H
  5. Abstract:
  6. Password reset wizard disk IO utility routines
  7. Author:
  8. Comments:
  9. Environment:
  10. WinXP
  11. Revision History:
  12. --*/
  13. #ifndef __DISKIO__
  14. #define __DISKIO__
  15. DWORD GetDriveFreeSpace(WCHAR *);
  16. INT ReadPrivateData(BYTE **,INT *);
  17. BOOL WritePrivateData(BYTE *,INT);
  18. HANDLE GetOutputFile(void);
  19. HANDLE GetInputFile(void);
  20. void CloseInputFile(void);
  21. void ReleaseFileBuffer(LPVOID);
  22. #endif