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.
29 lines
567 B
29 lines
567 B
#include "global.h"
|
|
|
|
//
|
|
// Init.cpp
|
|
//
|
|
void ProgramInit(void);
|
|
void ProgramExit(void);
|
|
|
|
//
|
|
// DrvComm.cpp
|
|
//
|
|
DWORD StartFileSpy(void);
|
|
DWORD ShutdownFileSpy(void);
|
|
BOOL QueryDeviceAttachments(void);
|
|
DWORD AttachToDrive(WCHAR cDriveName);
|
|
DWORD DetachFromDrive(WCHAR cDriveName);
|
|
DWORD WINAPI PollFileSpy(LPVOID pParm);
|
|
void GetFlagsString(DWORD nFlags, PWCHAR sStr);
|
|
void GetTimeString(FILETIME *pFileTime, PWCHAR sStr);
|
|
|
|
//
|
|
// Support.cpp
|
|
//
|
|
void DisplayError(DWORD nCode);
|
|
|
|
//
|
|
// Drive.cpp
|
|
//
|
|
USHORT BuildDriveTable(VOLINFO *pVolInfo);
|