Overview
Type:
|
Function
|
Available as of:
|
SystemInterface_1.32.6.0
|
Versions:
|
Current version
|
Task
Fill the memory area with a character.
Description
With this function, a memory area can be filled with a character.
Interface
Input
|
Data type
|
Description
|
i_dwDest
|
DWORD
|
Initial address of the memory area
|
i_byCharacter
|
BYTE
|
Character to be used for filling.
|
i_dwCount
|
DWORD
|
Number of bytes to be filled
|
Return Value
Data type
|
Description
|
DWORD
|
o_FC_MemorySet: Pointer to the filled memory area
|
Examples
dwResult : DWORD;
dwResult := FC_MemorySet(pbyAddresse,byCharacter,dwSize);