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.
46 lines
730 B
46 lines
730 B
//+-----------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (c) Microsoft Corporation
|
|
//
|
|
// File: kpmem.cxx
|
|
//
|
|
// Contents: Prototypes for Routines to wrap memory allocation, etc.
|
|
//
|
|
// History: 10-Jul-2001 t-ryanj Created
|
|
//
|
|
//------------------------------------------------------------------------
|
|
#include <windows.h>
|
|
#include <rpc.h>
|
|
|
|
#ifndef __KTMEM_H__
|
|
#define __KTMEM_H__
|
|
|
|
BOOL
|
|
KtInitMem(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
KtCleanupMem(
|
|
VOID
|
|
);
|
|
|
|
PVOID
|
|
KtAlloc(
|
|
SIZE_T size
|
|
);
|
|
|
|
VOID
|
|
KtFree(
|
|
PVOID buf
|
|
);
|
|
|
|
PVOID
|
|
KtReAlloc(
|
|
PVOID buf,
|
|
SIZE_T size
|
|
);
|
|
|
|
#endif // __KTMEM_H__
|