📄 resorgutils_dlldefs.h
字号:
/************************************************************************
*
* Resource ID Organiser Utility Library
*
* (c) Copyright 2000 by Andy Metcalfe (andy.metcalfe@lineone.net)
* All rights reserved.
*
************************************************************************
*
* Filename : ResOrgUtils_DllDefs.h
*
* Description : ResOrgUtils private header file
*
* Compiler : Microsoft Visual C++ 6.0, Service Pack 3 or 4
*
* Target
* Environment : Windows 98/NT
*
* NOTE:
*
* This software is provided "as is" free for personal use. All
* title and copyrights in and to the software, including but not
* limited to any images, text, etc. incorporated into it, are
* owned by Andy Metcalfe, except where acknowledged otherwise.
*
* Your may freely to use this code in your own products, PROVIDED
* this notice is not removed or modified.
*
*
* Visit http://www.resorg.co.uk for latest updates
*
************************************************************************
*
* MODIFICATION HISTORY:
*
* This is a controlled document. See project configuration
* control tool for latest version and full version history.
*
* $Archive: /Projects/AddIns/ResOrg/ResOrgUtils/ResOrgUtils_DllDefs.h $
* $Revision: 8 $
* $Date: 5/06/01 19:36 $
* $Author: Andy $
*
* $History: ResOrgUtils_DllDefs.h $
*
* ***************** Version 8 *****************
* User: Andy Date: 5/06/01 Time: 19:36
* Updated in $/Projects/AddIns/ResOrg/ResOrgUtils
* Commented out expiry date for imminent version 1.3 release
*
* ***************** Version 7 *****************
* User: Andy Date: 22/05/01 Time: 16:12
* Updated in $/Projects/AddIns/ResOrg/ResOrgUtils
* Changed expiry date to 23rd June 2001
*
* ***************** Version 6 *****************
* User: Andy Date: 23/04/01 Time: 21:20
* Updated in $/Projects/AddIns/ResOrg/ResOrgUtils
* Revised expiry date to 25/5/2001
*
* ***************** Version 5 *****************
* User: Andy Date: 21/04/01 Time: 7:25
* Updated in $/Projects/AddIns/ResOrg/ResOrgUtils
* Changed expiry date
*
* ***************** Version 4 *****************
* User: Andy Date: 5/04/01 Time: 6:10
* Updated in $/Projects/AddIns/ResOrg/ResOrgUtils
* Added support for version expiry (conditional compilation)
*
* ***************** Version 3 *****************
* User: Andy Date: 17/02/01 Time: 6:51
* Updated in $/Projects/AddIns/ResOrg/ResOrgUtils
* Added declaration for "SymbolTypes" global helper object
*
* ***************** Version 2 *****************
* User: Andy Date: 29/11/00 Time: 18:38
* Updated in $/Projects/AddIns/ResOrg/ResOrgUtils
* Added file banners
*
* $Nokeywords: $
*
************************************************************************/
// File: ResOrgUtils_DllDefs.h
#ifndef __ResOrgUtils_DllDefs_H__
#define __ResOrgUtils_DllDefs_H__
#ifndef RESORGUTILS_EXT_CLASS
#ifdef RESORGUTILS_BUILD_DLL
#define RESORGUTILS_EXT_CLASS AFX_CLASS_EXPORT
#define RESORGUTILS_EXT_API AFX_API_EXPORT
#define RESORGUTILS_EXT_DATA AFX_DATA_EXPORT
#else
#define RESORGUTILS_EXT_CLASS AFX_CLASS_IMPORT
#define RESORGUTILS_EXT_API AFX_API_IMPORT
#define RESORGUTILS_EXT_DATA AFX_DATA_IMPORT
#endif
#endif
// Define the symbol below to give this build an expiry date
// The symbol should be of the form: year, month, day
//
//#define _RESORG_EXPIRY_DATE 2001, 6, 23
#ifdef _RESORG_EXPIRY_DATE
RESORGUTILS_EXT_API CTime GetVersionExpiryDate(void);
RESORGUTILS_EXT_API BOOL IsVersionExpired(void);
RESORGUTILS_EXT_API BOOL DoVersionExpiryCheck(void);
#endif
// Call to initalise the library if using it from a regular DLL
RESORGUTILS_EXT_API void WINAPI InitResOrgUtils(void);
class CResOrgOptions;
class CResourceSymbolTypes;
extern RESORGUTILS_EXT_DATA CResOrgOptions Options;
extern RESORGUTILS_EXT_DATA CResourceSymbolTypes SymbolTypes;
#endif //!__ResOrgUtils_DllDefs_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -