mirror of https://github.com/tongzx/nt5src
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.
16 lines
557 B
16 lines
557 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1994.
|
|
//
|
|
// File: memctx.hxx
|
|
//
|
|
// Contents: extern definitions from memctx.cxx
|
|
//
|
|
// History: 08-Mar-94 BobDay Derived from MEMCTX.HXX
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
STDAPI_(DWORD) CoMemctxOf(void const FAR* lpv);
|
|
STDAPI_(void FAR*) CoMemAlloc(ULONG size, DWORD memctx, void FAR* lpvNear);
|
|
STDAPI_(void) CoMemFree(void FAR* lpv, DWORD memctx);
|