diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/m_system_cpp.h | 4 | ||||
-rw-r--r-- | include/m_utils.h | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/include/m_system_cpp.h b/include/m_system_cpp.h index 600eefe01f..933b416e85 100644 --- a/include/m_system_cpp.h +++ b/include/m_system_cpp.h @@ -53,6 +53,10 @@ public: __inline operator INT_PTR() const { return (INT_PTR)data; }
};
+typedef mir_ptr<char> MCBuf;
+typedef mir_ptr<TCHAR> MTBuf;
+typedef mir_ptr<WCHAR> MWBuf;
+
///////////////////////////////////////////////////////////////////////////////
// mir_cslock - simple locker for the critical sections
diff --git a/include/m_utils.h b/include/m_utils.h index 6e418fdc6c..c738cb924e 100644 --- a/include/m_utils.h +++ b/include/m_utils.h @@ -428,17 +428,17 @@ __forceinline TCHAR* Utils_ReplaceVarsT(const TCHAR *szData) { #include "m_system_cpp.h"
#endif
- struct VARS : public mir_ptr<char>
+ struct VARS : public MCBuf
{
__forceinline VARS(const char *str) :
- mir_ptr<char>( Utils_ReplaceVars(str))
+ MCBuf( Utils_ReplaceVars(str))
{}
};
- struct VARST : public mir_ptr<TCHAR>
+ struct VARST : public MTBuf
{
__forceinline VARST(const TCHAR *str) :
- mir_ptr<TCHAR>( Utils_ReplaceVarsT(str))
+ MTBuf( Utils_ReplaceVarsT(str))
{}
};
#endif
|