SECBitArray::ConvertFromChars

template <unsigned int ArraySize_T, class DataType_T>
void SECBitArray<ArraySize_T, DataType_T>::ConvertFromChars(LPCTSTR lpszChars)

Set bits that correspond to the given set of characters.

Defined in: SECBitmapArray.h

Return Value

void

Parameters

lpszChars

Points to the string in which to place characters.

Comments

This function loops through the set of given characters and uses the numeric value of each character as an index into the bit array. Each bit that corresponds to a character in the input string is set to TRUE.

Class Template Arguments

ArraySize_T

The maximum number of bits for the array.

DataType_T

The data type used to make up the array (e.g., DWORD, etc.)

See Also

SECBitArray