2025-04-27 07:49:33 -04:00

36 lines
848 B
C++
Raw 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__