Group: Memory Management - Library: kernel32
How to print a bitmap file
Vertical Label control
How to convert a bitmap file to monochrome format (1 bpp)
VOID ZeroMemory(
PVOID Destination, // memory block
SIZE_T Length // size of memory block
); DECLARE RtlZeroMemory IN kernel32 As ZeroMemory;
INTEGER dest,;
INTEGER numBytes
Destination [in] Pointer to the starting address of the block of memory to fill with zeros.
Length [in] Size, in bytes, of the block of memory to fill with zeros.
This function has no return value.
Home