Function _conCharSetIsAnsi() Foundation

Checks if the character set of the current thread is of type ANSI.

Syntax
BOOL XPPAPIENTRY _conCharSetIsAnsi()
Return

This function returns a logical value.

Description

The function _conCharSetIsAnsi() is used to determine whether the current thread's character set is of type ANSI. Its return value is a boolean value, which is TRUE if an ANSI character set is used, otherwise it is FALSE.

Examples
#include <windows.h> 

#include "xppdef.h" 
#include "xpppar.h" 
#include "xppcon.h" 

XPPRET XPPENTRY MyCAPIFunction(XppParamList paramList) 
{ 
_retl( paramList, _conCharSetIsAnsi() ); 
} 
Feedback

If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.