windows-nt/Source/XPSP1/NT/base/boot/oschoice/oscheap.h

42 lines
481 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
/*++
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__