mirror of https://github.com/lianthony/NT4.0
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.
15 lines
473 B
15 lines
473 B
/* docfunc.h
|
|
*
|
|
* declares dos functions used by file manager
|
|
*/
|
|
|
|
BOOL APIENTRY DosFindFirst(LPDOSDTA, LPSTR, WORD);
|
|
BOOL APIENTRY DosFindNext(LPDOSDTA);
|
|
BOOL APIENTRY DosDelete(LPSTR);
|
|
//WORD APIENTRY GetFileAttributes(LPSTR);
|
|
//WORD APIENTRY SetFileAttributes(LPSTR, WORD);
|
|
DWORD APIENTRY GetFreeDiskSpace(WORD);
|
|
DWORD APIENTRY GetTotalDiskSpace(WORD);
|
|
INT APIENTRY GetVolumeLabel(INT, LPSTR, BOOL);
|
|
INT APIENTRY MySetVolumeLabel(INT, BOOL, LPSTR);
|
|
|