在Windows下,ShellExecute函数是在shellapi.h头文件中声明的。因此,在使用ShellExecute函数之前,您需要包含shellapi.h头文件。
示例代码:#include <windows.h>#include <shellapi.h>int main(){ // 使用ShellExecute函数 return 0;}
#include <windows.h>
#include <shellapi.h>
int main()
{
// 使用ShellExecute函数
return 0;
}
请注意,windows.h头文件也需要被包含,因为它包含了一些必需的定义和声明,以及其他与Windows API相关的内容。