Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

89 lines
948 B

/*++
Copyright (c) 1994 Microsoft Corporation
Module Name:
proto.h
Abstract:
Contains proto type definitions of several functions.
Author:
Madan Appiah (madana) 15-Nov-1994
Environment:
User Mode - Win32
Revision History:
--*/
#ifndef _PROTO_
#define _PROTO_
#ifdef __cplusplus
extern "C" {
#endif
BOOL
DLLUrlCacheEntry(
IN HINSTANCE DllHandle,
IN DWORD Reason,
IN LPVOID Reserved
);
DWORD
GetFileSizeByName(
LPCTSTR FileName,
LONGLONG *FileSize
);
LONGLONG
GetGmtTime(
VOID
);
DWORD
DllProcessAttachDiskCache(
VOID
);
DWORD
DllProcessDetachDiskCache(
VOID
);
DWORD
PrivateUrlCacheInit(
VOID
);
DWORD
UrlNameToHashIndex(
LPCSTR UrlName,
DWORD HashTableSize);
BOOL
IsCacheValid(
VOID
);
PVOID
MIDL_user_allocate(
size_t Size
);
VOID
MIDL_user_free(
PVOID MemoryPtr
);
#ifdef __cplusplus
}
#endif
#endif // _PROTO_