起因:操作系统的书中的参考代码(代码在其他的编译器上应该是可以正常运行的)。
问题:
#include<Windows.h>
#include<stdio.h>
struct SHFILEOPSTRUCT {
HWND hwnd;
UINT wfunc;
LPCTSTR pfrom;
LPCTSTR pto;
FILEOP_FLAGS fflags;
BOOL fanyoperationalborted;
LPVOID hnamemapping;
LPCTSTR lpszprogresstitle;
};
int main()
{
int nok;
char strsrc[] = "c:\\dos\0";
char strdst[] = "c:\\temp\0";
char strtitle[] = "file copying";
SHFILEOPSTRUCT fileop;
fileop.hwnd = NULL;
fileop.wfunc = FO_COPY;
fileop.pfrom = strsrc;
fileop.pto = strdst;
fileop.fflags = FOF_ALLOWUNDO;
fileop.hnamemapping = NULL;
fileop.lpszprogresstitle = strtitle;
nok = SHFileOperation(&fileop);
if (nok)
printf("出错: %d\n", nok);
else
{
printf("文件目录操作成功结束!\n");
if (fileop.fanyoperationalborted)
printf("撤销文件操作!\n");
}
}
在visual studio 2017上编译后出现了三个错误:
①C2371 “SHFILEOPSTRUCT”: 重定义;不同的基类型;
②C2664 “int SHFileOperationA(LPSHFILEOPSTRUCTA)”: 无法将参数 1 从“SHFILEOPSTRUCT *”转换为“LPSHFILEOPSTRUCTA”;
③E0167 "SHFILEOPSTRUCT *" 类型的实参与 "LPSHFILEOPSTRUCTA" 类型的形参不兼容;
我依照着https://bbs.csdn.net/topics/392421327?page=1,此连接中的解决方案试了还是不行,也参考了微软的编译错误提示,我找不到问题出现的原因。