#ifndef _NISAMPLECLIENT_H_#define _NISAMPLECLIENT_H_#include <windows.h>#include <stdlib.h>using namespace std; // ERROR here (1)#ifdef _UNICODE#define CommandlinetoArgv CommandlinetoArgvW#else#define CommandlinetoArgv CommandlinetoArgvA#endiftypedef basic_string<TCHAR> tstring; // ERROR HERE (2)
尝试编译时出现编译器错误. “ERROR here(1)”中的错误是:
Error 3 error C2871: ‘std’ : a namespace with this name does not exist \nisampleclIEnt\nisampleclIEntdefs.h 16
如果我删除using namespace std;声明并将ERROR HERE(2)更改为typedef std :: basic_string< TCHAR> tstring;然后我收到一个错误:
Error 3 error C2653: ‘std’ : is not a class or namespace name \nisampleclIEnt\nisampleclIEntdefs.h 23
在那一点上.
提前致谢. 总结
以上是内存溢出为你收集整理的c – tstring typedef问题全部内容,希望文章能够帮你解决c – tstring typedef问题所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)