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.
57 lines
581 B
57 lines
581 B
/*++
|
|
|
|
Copyright (c) 1994 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
debug.h
|
|
|
|
Abstract:
|
|
|
|
Contains data definitions for debug code.
|
|
|
|
Author:
|
|
|
|
Madan Appiah (madana) 15-Nov-1994
|
|
|
|
Environment:
|
|
|
|
User Mode - Win32
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _PROTO_
|
|
#define _PROTO_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
DWORD
|
|
GetFileSizeByName(
|
|
LPCWSTR FileName,
|
|
LONGLONG *FileSize
|
|
);
|
|
|
|
LONGLONG
|
|
GetGmtTime(
|
|
VOID
|
|
);
|
|
|
|
DWORD
|
|
DllProcessAttachDiskCache(
|
|
VOID
|
|
);
|
|
|
|
DWORD
|
|
DllProcessDetachDiskCache(
|
|
VOID
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _PROTO_
|