Files
mir_server/sdk/srvlib/include/wyString.h

26 lines
498 B
C
Raw Normal View History

2025-01-09 17:45:40 +08:00
#ifndef _WYLIB_STRING_H_
#define _WYLIB_STRING_H_
/******************************************************************
*
* wyLib库 2008 - 2010
*
* $ $
*
* - -
*
* UCS-2ASCII字符串处理类
*
*****************************************************************/
#include "WideString.hpp"
#include "AnsiString.hpp"
#ifdef UNICODE
typedef wylib::string::CWideString String;
#else
typedef wylib::string::CAnsiString String;
#endif
#endif