 |
FillMemory ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The FillMemory function fills a block of memory with a specified value. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
VOID FillMemory (
PVOID Destination, // memory block
SIZE_T Length, // size of memory block
BYTE Fill // fill value
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE RtlFillMemory IN kernel32 AS FillMemory;
INTEGER Dest,;
INTEGER Length,;
SHORT nFill
|
 |
 |
 |
| Parameters: |
 |
Destination
[out] Pointer to the starting address of the block of memory to fill.
Length
[in] Specifies the size, in bytes, of the block of memory to fill.
Fill
[in] Specifies the byte value with which to fill the memory block. |
 |
 |
| Return value: |
 |
| This function has no return value. |
 |
 |
| Word Index links for the FillMemory : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2001-11-30 22:09:34 | | Modified: | 2005-12-02 18:06:59 | Visited in last 7 days: 20 |