📄 dsaddinloader.h
字号:
#ifndef __DSAddInLoader_H__
#define __DSAddInLoader_H__
/************************************************************************
*
* Resource ID Organiser Core Library
*
* (c) Copyright 2000-2002 by Anna-Jayne Metcalfe (resorg@annasplace.me.uk)
* All rights reserved.
*
************************************************************************
*
* Filename : DSAddInLoader.h
*
* Description : CDSAddInLoader - A class for configuring Visual Studio 6
* to load add-ins
*
* Compiler : Microsoft Visual C++ 6.0, Service Pack 3 or later
*
* Target
* Environment : Windows 98/NT/2000/XP
*
* 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 Anna-Jayne 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.annasplace.me.uk/resorg 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/ResOrgCore/DSAddInLoader.h $
* $Revision: 8 $
* $Date: 15/02/03 20:42 $
* $Author: Anna $
*
* $History: DSAddInLoader.h $
*
* ***************** Version 8 *****************
* User: Anna Date: 15/02/03 Time: 20:42
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* Changed big BOOLs into little bools
*
* ***************** Version 7 *****************
* User: Anna Date: 25/11/02 Time: 15:10
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* Changed website address in banner
*
* ***************** Version 6 *****************
* User: Anna Date: 22/10/02 Time: 13:24
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* Changed name/mail address (at last!)
*
* ***************** Version 5 *****************
* User: Anna Date: 22/10/02 Time: 13:09
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* Changed name/mail address (at last!)
*
* ***************** Version 4 *****************
* User: Andy Date: 7/06/02 Time: 17:04
* Updated in $/Projects/AddIns/ResOrg/ResOrgCore
* Renamed the ResOrgUtils module to ResOrgCore. Updated file banners
* accordingly
*
* ***************** Version 3 *****************
* User: Andy Date: 12/05/01 Time: 6:46
* Updated in $/Projects/AddIns/ResOrg/ResOrgUtils
* Added checks for available DevStudio versions
*
* ***************** Version 2 *****************
* User: Andy Date: 17/02/01 Time: 7:14
* Updated in $/Projects/AddIns/ResOrg/ResOrgUtils
* Now registers the server as well...
*
* ***************** Version 1 *****************
* User: Andy Date: 4/12/00 Time: 18:43
* Created in $/Projects/AddIns/ResOrg/ResOrgUtils
*
*
* $Nokeywords: $
*
************************************************************************/
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
/////////////////////////////////////////////////////////////////////////////
// CDSAddInLoader class
class RESORGCORE_EXT_CLASS CDSAddInLoader: public CObject
{
public:
CDSAddInLoader(const CString& sName);
// Attributes
protected:
CString m_sRootKey;
CString m_sName;
CString m_sDescription;
CString m_sPathName;
bool m_bLoaded;
// Operations
public:
static int GetDevStudioVersions(CStringArray& rarrayVersions);
CString GetDescription(void) const
{ return m_sDescription; }
CString GetPathName(void) const
{ return m_sPathName; }
bool IsLoaded(void) const
{ return m_bLoaded; }
bool Load(bool bLoad);
bool SetDescription(const CString& sDesc);
bool SetPathName(const CString& sPath);
bool CanLoad(void) const
{ return !m_sRootKey.IsEmpty(); }
// Implementation
protected:
bool ReadConfig(const CString& sName);
bool WriteConfig(const CString& sName);
bool RegisterServer(void);
};
#endif //!__DSAddInLoader_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -