home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
SHAREMEM.HPP
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
2KB
|
50 lines
//----------------------------------------------------------------------------
// ShareMem.hpp - bcbdcc32 generated hdr (DO NOT EDIT) rev: 0
// From: ShareMem.pas
//----------------------------------------------------------------------------
#ifndef ShareMemHPP
#define ShareMemHPP
//----------------------------------------------------------------------------
#include <System.hpp>
#pragma warn -par
#pragma warn -hid
#pragma warn -inl
namespace Sharemem
{
//-- type declarations -------------------------------------------------------
//-- var, const, procedure ---------------------------------------------------
extern "C" void * __fastcall SysGetMem(int Size);
extern "C" int __fastcall SysFreeMem(void * P);
extern "C" void * __fastcall SysReallocMem(void * P, int Size);
extern "C" System::THeapStatus __fastcall GetHeapStatus(void);
extern "C" int __fastcall GetAllocMemCount(void);
extern "C" int __fastcall GetAllocMemSize(void);
extern "C" void __fastcall DumpBlocks(void);
inline void * __fastcall SysGetMem(int Size)
{
return SysGetMem(Size);
}
inline int __fastcall SysFreeMem(void * P)
{
return SysFreeMem(P);
}
inline void * __fastcall SysReallocMem(void * P, int Size)
{
return SysReallocMem(P, Size);
}
} /* namespace Sharemem */
#pragma warn .par
#pragma warn .hid
#pragma warn .inl
#if !defined(NO_IMPLICIT_NAMESPACE_USE)
using namespace Sharemem;
#endif
//-- end unit ----------------------------------------------------------------
#endif // ShareMem