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.
19 lines
571 B
19 lines
571 B
/*
|
|
* E X M E M . H
|
|
*
|
|
* Defines a set of external functions that provide memory allocation
|
|
* for common code between impls and store-side processes. The memory
|
|
* allocators defined here can fail and callers are responsible for
|
|
* checking the return values.
|
|
*
|
|
* Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
|
|
*/
|
|
|
|
#ifndef _EX_EXMEM_H_
|
|
#define _EX_EXMEM_H_
|
|
|
|
extern LPVOID __fastcall ExAlloc( UINT cb );
|
|
extern LPVOID __fastcall ExRealloc( LPVOID lpv, UINT cb );
|
|
extern VOID __fastcall ExFree( LPVOID pv );
|
|
|
|
#endif // _EX_EXMEM_H_
|