CSetB

Initializes an area of memory to a value.

Thread Context:Non-Blocking

Syntax

    void CSetB (
       BYTE   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 BYTEs in the memory area to be initialized to value.

Remarks

CSetB initializes the number of BYTEs specified in count of the memory area pointed to by address to the value specified in value.