⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bxfiledialog_dll.h

📁 ResOrg 图形化管理Vc项目的资源ID的工具的源代码。 ResOrg - Manage and Renumber Resource Symbol IDs Introduction The
💻 H
字号:
//
// BXFileDialog_Dll.h
//
// Header file for using the BXFileDialog module
//

#ifndef __BXFileDialog_Dll_H__
	#define __BXFileDialog_Dll_H__

	// Make it easier for clients apps to use us by removing the
	// need for them to specify our import libraries directly
	//
	// If this include file is being used to build the library
	// itself, we must disable this feature...
	#ifndef	BXFILEDLG_BUILD_DLL
		#ifdef LIBNAME
			#undef LIBNAME
		#endif
		#ifdef _UNICODE
			#ifdef _DEBUG
				#define LIBNAME	"BXFileDialogUD.lib"
			#else
				#define LIBNAME	"BXFileDialogU.lib"
			#endif
		#else
			#ifdef _DEBUG
				#define LIBNAME	"BXFileDialogD.lib"
			#else
				#define LIBNAME	"BXFileDialog.lib"
			#endif
		#endif
		#pragma message("Automatically linking with " LIBNAME)
		#pragma comment(lib, LIBNAME)
	#endif

	#include <afxcmn.h>					// MFC support for Windows Common Controls
	#include <afxtempl.h>


	// Call this function to initalise the library if using it from a regular DLL
	AFX_API_IMPORT void WINAPI InitBXFileDialogDll(void);


	#include "BXFileDialog_Res.h"
	#include "BXFileDialog_DllDefs.h"

	// Macros and globals

	// Classes
	#include "BXFileDialog.h"			// BXFileDialog class
	#include "BXFileDialogDocManager.h"	// The BXFileDialogDocManager class makes it easy
										// to use the BXFileDialog class in SDI/MDI applications


#endif	//!__BXFileDialog_Dll_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -