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.
23 lines
602 B
23 lines
602 B
//+-----------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (c) Microsoft Corporation 1991 - 1997
|
|
//
|
|
// File: memmgr.h
|
|
//
|
|
// Contents: Memory Manager code for KSecDD
|
|
//
|
|
//
|
|
// History: 23 Feb 93 RichardW Created
|
|
// 15 Dec 97 AdamBa Modified from private\lsa\client\ssp
|
|
//
|
|
//------------------------------------------------------------------------
|
|
|
|
#ifndef __MEMMGR_H__
|
|
#define __MEMMGR_H__
|
|
|
|
PKernelContext AllocContextRec(void);
|
|
void FreeContextRec(PKernelContext);
|
|
|
|
#endif
|