【环球播资讯】c语言shellexecute_shellexecute头文件
2023-04-21 10:48:30
来源:互联网
(资料图片)
c语言shellexecute,shellexecute头文件这个很多人还不知道,现在让我们一起来看看吧!
1、#include #include #include #include #include // 声明快照函数的头文件using namespace std;//#pragma comment( linker, "/subsystem:"windows" /entry:"mainCRTStartup"" ) int main(int argc, char* argv[]){ char join[]="""; char begin[128]; ::GetCurrentDirectory(100,begin); char end[]="\Maxthon.exe"; strcat(begin,end); strcat(begin,join); strcat(join,begin); ::ShellExecute(NULL,"open",join, NULL,NULL,SW_SHOW ); printf("%s",join); return 0;} 右键点工程名,选设置,然后选c/c++属性页,再选catagory选单中选 precompiled header ,将选项置成no use 或者autometic。
本文到此分享完毕,希望对大家有所帮助。
关键词:
责任编辑:Rex_21