Function _conCharSetIsOem() Foundation

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

Syntax
BOOL XPPAPIENTRY _conCharSetIsOem()
Return

This function returns a logical value.

Description

The function _conCharSetIsOem() is used to determine whether the current thread's character set is of type OEM. Its return value is a boolean value, which is TRUE if an OEM 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, _conCharSetIsOem() ); 
} 
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.