You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
183 B
C
18 lines
183 B
C
|
1 month ago
|
|
||
|
|
#if !defined(UMSTRING_H)
|
||
|
|
#define UMSTRING_H
|
||
|
|
|
||
|
|
#ifdef _MFC_VER
|
||
|
|
|
||
|
|
#include <afx.h>
|
||
|
|
typedef CString UMString;
|
||
|
|
|
||
|
|
#else
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
typedef std::string UMString;
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|