windows-nt/Source/XPSP1/NT/com/ole32/olethunk/ole16/compobj/comlocal.hxx
2020-09-26 16:20:57 +08:00

36 lines
813 B
C++
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1994.
//
// File: comlocal.hxx
//
// Contents: Local functions header and external definitions
//
// History: 10-Mar-94 DrewB Created
//
//----------------------------------------------------------------------------
#ifndef __COMLOCAL_HXX__
#define __COMLOCAL_HXX__
extern IMalloc FAR* v_pMallocShared;
LPVOID __loadds FAR PASCAL TaskAlloc(ULONG cb);
void __loadds FAR PASCAL TaskFree(LPVOID pv);
#if defined(_CHICAGO_)
extern BOOL gfReleaseDLL;
#define SetReleaseDLL(x) gfReleaseDLL = x
#define CanReleaseDLL() gfReleaseDLL
#else
#define SetReleaseDLL(x)
#define CanReleaseDLL() TRUE
#endif
#endif // #ifndef __COMLOCAL_HXX__