Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

40 lines
885 B

//=============================================================================
// Microsoft (R) Bloodhound (tm). Copyright (C) 1991-1993.
//
// MODULE: objmgr.h
//
// Modification History
//
// raypa 03/17/93 Created.
//=============================================================================
#if !defined(_OBJMGR_)
#define _OBJMGR_
#pragma pack(1)
#ifdef __cplusplus
extern "C"{
#endif
//=============================================================================
// Memory functions.
//=============================================================================
extern LPVOID WINAPI AllocMemory(DWORD size);
extern LPVOID WINAPI ReallocMemory(LPVOID ptr, DWORD NewSize);
extern VOID WINAPI FreeMemory(LPVOID ptr);
extern DWORD_PTR WINAPI MemorySize(LPVOID ptr);
void MemInit();
#ifdef __cplusplus
}
#endif
#pragma pack()
#endif