VC6中,ShellExecute函数需要include什么头文件?

时间:2022-05-27 23:13:54
VC6中,

我是控制台程序,不是mfc程序。

使用ShellExecute函数需要include什么头文件?


4 个解决方案

#1


shellapi.h

楼主没有msdn吗?

#2


类似这样的问题自己可以在网上查一下

#3


#include <afxwin.h>         // MFC 核心和标准组件
#include <afxext.h>         // MFC 扩展
#include <afxdisp.h>        // MFC 自动化类
#include <afxdtctl.h> // Internet Explorer 4 公共控件的 MFC 支持
#include <afxcmn.h>

肯定是这几个文件中的一个,我用建立的mfc对话框程序,就能调用ShellExecute

#4


SHELLAPI.H.vc自带的头文件

#1


shellapi.h

楼主没有msdn吗?

#2


类似这样的问题自己可以在网上查一下

#3


#include <afxwin.h>         // MFC 核心和标准组件
#include <afxext.h>         // MFC 扩展
#include <afxdisp.h>        // MFC 自动化类
#include <afxdtctl.h> // Internet Explorer 4 公共控件的 MFC 支持
#include <afxcmn.h>

肯定是这几个文件中的一个,我用建立的mfc对话框程序,就能调用ShellExecute

#4


SHELLAPI.H.vc自带的头文件