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.
42 lines
522 B
42 lines
522 B
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
oscheap.c
|
|
|
|
Abstract:
|
|
|
|
This module contains "local" heap management code for OS Chooser.
|
|
|
|
Author:
|
|
|
|
Geoff Pease (gpease) May 28 1998
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef __OSCHEAP_H__
|
|
#define __OSCHEAP_H__
|
|
|
|
#ifndef UINT
|
|
#define UINT unsigned int
|
|
#endif // UINT
|
|
|
|
void
|
|
OscHeapInitialize( );
|
|
|
|
PCHAR
|
|
OscHeapAlloc(
|
|
IN UINT iSize
|
|
);
|
|
|
|
PCHAR
|
|
OscHeapFree(
|
|
IN PCHAR pMemory
|
|
);
|
|
|
|
|
|
#endif // __OSCHEAP_H__
|