2014-04-02第14周周三工作日志: error C2377: 'BOOL' : redefinition; typedef cannot be overloaded with any othe

来源:互联网 发布:修改电脑mac地址 编辑:程序博客网 时间:2024/06/05 08:36

之所以会出现

error C2377: 'BOOL' : redefinition; typedef cannot be overloaded with any othe

这样的问题,主要是因为引用的头文件写的不对

#ifndef CopyDirectory#define CopyDirectory……#endif
应改为:
#ifndef CopyDirectory_H#define CopyDirectory_H……#endif

0 0