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
39 lines
523 B
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
DISKIO.H
|
|
|
|
Abstract:
|
|
|
|
Password reset wizard disk IO utility routines
|
|
|
|
Author:
|
|
|
|
|
|
Comments:
|
|
|
|
Environment:
|
|
WinXP
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef __DISKIO__
|
|
#define __DISKIO__
|
|
|
|
DWORD GetDriveFreeSpace(WCHAR *);
|
|
INT ReadPrivateData(BYTE **,INT *);
|
|
BOOL WritePrivateData(BYTE *,INT);
|
|
HANDLE GetOutputFile(void);
|
|
HANDLE GetInputFile(void);
|
|
void CloseInputFile(void);
|
|
void ReleaseFileBuffer(LPVOID);
|
|
|
|
#endif
|
|
|
|
|
|
|