Copies data directly between NTX process space and an RT process memory region. Use this function when you want to omit the mapping step.
Note: If the NTX application must operate on copied data that contains RTHANDLEs, you must convert the handles using ntxImportRtHandle.
// 32-bit version
NTXSTATUS ntxCopyRtData(
NTXHANDLE hSrcSeg,
DWORD dwSrcOffset,
NTXHANDLE hDestSeg,
DWORD dwDestOffset,
DWORD dwLength
);
// 64-bit version
NTXSTATUS ntxCopyRtData(
NTXHANDLE hSrcSeg,
unsigned __int64 dwSrcOffset,
NTXHANDLE hDestSeg,
unsigned __int64 dwDestOffset,
unsigned __int64 dwLength
);
hSrcSeg
dwSrcOffset
hDestSeg
dwDestOffset
dwLength
The status code.
E_PARAM 0x8004
| Versions | Defined in | Include | Link to |
|---|---|---|---|
| INtime 3.0 | intime/nt/include/ntx.h | ntx.h | ntx.lib |
| INtime 4.01 (64-bit Windows) | intime/nt/include/ntx.h | ntx.h | ntx64.lib |