我用VC编译,
当我编译
#include <windows.h>
int main(int i,char* args[]){
ShellExecute(NULL,"open","IEXPLORE.exe","http://www.csdn.net",NULL,SW_SHOWNORMAL);
}
时没问题但当我把这个ShellExecute用到新建的API HelloWorld程序(VC向导创建)中时,VC就说--------------------------------------
ShellExecuteEx' : undeclared identifier
--------------------------------------我也include <windows.h>了,可就是不行请高手指点一下