#include "internalRpcUtils.h" #include #include #include //-------------------------------------------------------------------------- BOOL __fastcall isStandardCharacter(_In_ const WCHAR wc) { BOOL bResult = FALSE; if( ((wc >= L'a') && (wc <= L'z')) || ((wc >= L'A') && (wc <= L'Z')) || ((wc >= L'0') && (wc <= L'9')) ) { bResult = TRUE; } return (bResult); } //------------------------------------------------------------------------- std::string narrow( _In_ const std::wstring& ws) { using convert_typeX = std::codecvt_utf8; std::wstring_convert converterX; return converterX.to_bytes(ws); } //------------------------------------------------------------------------- VOID displayPtrLevel( _In_ const UINT uPtrLevel, _Inout_ std::ostringstream& oss) { for(UINT i=0; i