我想在键盘上一键弹出计算器
我使用了WinExec("calc.exe",SW_SHOWNORMAL);
但是编译不能通过,报错'WinExec' undefined; assuming extern returning int
'SW_SHOWNORMAL' : undeclared identifier
使用ShellExecute(NULL,"open","calc.exe",NULL,NULL,SW_SHOWNORMAL);
也遇到同样的问题
'ShellExecute' undefined; assuming extern returning int
'SW_SHOWNORMAL' : undeclared identifier
请问高手
怎样才能在驱动中打开计算器呢?
没有 包含相应的头文件 。。。ShellExecute就可以 打开
我记得驱动里面要使用API,要加上ZW开头吧,具体我也不记得了.