Leaked source code of windows server 2003
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.
 
 
 
 
 
 

41 lines
574 B

/*++
Copyright(c) 1995 Microsoft Corporation
MODULE NAME
mem.h
ABSTRACT
Header file for memory allocation routines.
AUTHOR
Anthony Discolo (adiscolo) 18-Aug-1995
REVISION HISTORY
--*/
//
// Pre-defined object types.
// Any other value represents a
// byte count.
//
#define ACD_OBJECT_CONNECTION 0
#define ACD_OBJECT_MAX 1
NTSTATUS
InitializeObjectAllocator();
PVOID
AllocateObjectMemory(
IN ULONG fObject
);
VOID
FreeObjectMemory(
IN PVOID pObject
);
VOID
FreeObjectAllocator();