57 lines
816 B
Modula-2
57 lines
816 B
Modula-2
LIBRARY STAXMEM
|
|
|
|
EXPORTS
|
|
DllMain
|
|
|
|
// Handle-less APIs
|
|
|
|
ExchAlloc
|
|
ExchReAlloc
|
|
ExchFree
|
|
ExchSize
|
|
|
|
// Multiple Heap APIs
|
|
|
|
ExchMHeapCreate
|
|
ExchMHeapDestroy
|
|
ExchMHeapAlloc
|
|
ExchMHeapReAlloc
|
|
ExchMHeapAllocDebug
|
|
ExchMHeapReAllocDebug
|
|
ExchMHeapFree
|
|
ExchMHeapSize
|
|
|
|
// Handle based APIs
|
|
|
|
ExchHeapCreate
|
|
ExchHeapDestroy
|
|
ExchHeapAlloc
|
|
ExchHeapReAlloc
|
|
ExchHeapFree
|
|
ExchHeapLock
|
|
ExchHeapUnlock
|
|
ExchHeapSize
|
|
ExchHeapCompact
|
|
ExchHeapValidate
|
|
ExchHeapWalk
|
|
|
|
//
|
|
// NT MpHeap APIs
|
|
//
|
|
|
|
MpHeapAlloc
|
|
MpHeapCompact
|
|
MpHeapCreate
|
|
MpHeapDestroy
|
|
MpHeapFree
|
|
MpHeapGetStatistics
|
|
MpHeapReAlloc
|
|
MpHeapValidate
|
|
|
|
//
|
|
// Miscelaneous other functions needed by the store.
|
|
//
|
|
ExchmemGetCallStack
|
|
ExchmemFormatSymbol
|
|
ExchmemReloadSymbols
|