Retrieve the value of one or more DWORDs from the memory buffer pointed by <pMem> starting at the position <nShift>.
Syntax:
PokeDouble(<pMem>,[[@]<nShift>],<ndValue>,...) -> <nBytesWriten>
PokeDouble(<pMem>,[[@]<nShift>],<aValues>) -> <nBytesWritten>
Parameters:
<pMem>
Base pointer to the memory buffer.
<nShift>
Zero based starting position within <pMem>. Is this parameter is passed by reference will be increased with the number of bytes retrieved, to reuse it in subsequent calls to Peek...() functions.
<nValue>, ...
Float64 value to write at <pMem>+<nShift>. You can provide more parameters to write multiple doubles in a single call.
<aValues>
Array of numeric double values to write at <pMem>+<nShift> and subsequent positions.
Return Value:
Number of written bytes.