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