dosmemput

Copy data from the heap to DOS real mode memory

Declaration

Source position: go32.pp line 205

const
dosmemput : procedure(seg: Word; ofs: Word; var data; count: LongInt) = @ dpmi\_dosmemput

Description

Copies heap data to dos real mode memory.

Parameters:

seg
destination real mode segment.
ofs
destination real mode offset.
data
source.
count
number of bytes to copy.

Notes: No range checking is performed.

For an example, see global_dos_alloc .

Errors

None.

See also

Name Description
dosmemfillchar Fill a region of DOS memory with a specific byte-sized value
dosmemfillword Fill a region of DOS memory with a specific word-sized value
dosmemget Copy data from DOS memory to the heap.
dosmemmove Move data between 2 DOS real mode memory locations
seg_fillchar Fill segment with byte value
seg_fillword Fill segment with word value
seg_move Move data between 2 locations