CSetD

Initializes an area of memory to a value.

Thread Context:Non-Blocking
Requirements: The storage locations in the memory area must be on LONG boundaries.

Syntax

    void CSetD (
       LONG   value,
       void  *address,
       LONG   count
    );
    
    

Parameters

value
(IN) Value to which the memory area is being set.
address
(IN)The starting address of the memory area.
count
(IN) Number of LONGs in the memory area to be initialized to value.

Remarks

CSetD initializes the number of LONGs specified in count of the memory area pointed to by address to the value specified in value.