MemGrpOpen Function |
Namespace: XSharp.RT
Tip |
---|
This function allows the direct manipulation of a memory location and should be used with extreme care. |
Tip |
---|
The Static Memory Functions (MemAlloc, MemSet etc) are included for compatibility only.
In most cases the static memory blocks can (and should) be replaced with arrays of bytes. Many of the functions in the runtime that take memory blocks as parameter, such as the low level IO functions, now have overloads that take arrays of bytes as parameter. We recommend that you use these overloads, because their performance is somewhat better. |
1wGrp := MemGrpOpen() 2IF wGrp = 0 3 ? "Unsuccessful - invalid handle" 4ELSE 5 ? "New valid handle", wGrp 6ENDIF