我有以下代码:
#include <windows.h>
void statistics(){
//processing code
LPCTSTR helpFile = "report.html";
ShellExecute(NULL, "open", helpFile, NULL, NULL, SW_SHOWNORMAL);
system("PAUSE");
}
如果我将这些代码行放在'main'函数中它可以工作,但是这里它写了一个错误:“错误:类型为”const char *“的值不能用于初始化”LPCTSTR“类型的实体。 有什么想法吗?
答案 0 :(得分:0)
对这些参数使用ShellExecuteA
(对于char
s)的使用。这应该有用。