MemTotal Function | |
Report the total number of bytes used by other memory manager functions.
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax FUNCTION MemTotal() AS DWORD
public static uint MemTotal()
Request Example
View SourceReturn Value
Type:
DWord
The total memory consumed by memory manager functions.
This value is rounded or accurate within 4 KB increments.
Remarks Examples
This example uses MemTotal() before and after allocating a memory buffer through a MemAllocSeg() function:
1? MemTotal()
2w := MemAllocSeg(100)
3? MemTotal()
See Also