Function _conCharSetIsAnsi() Foundation
Checks if the character set of the current thread is of type ANSI.
BOOL XPPAPIENTRY _conCharSetIsAnsi()
This function returns a logical value.
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.
#include <windows.h>
#include "xppdef.h"
#include "xpppar.h"
#include "xppcon.h"
XPPRET XPPENTRY MyCAPIFunction(XppParamList paramList)
{
_retl( paramList, _conCharSetIsAnsi() );
}
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.