#if !defined(__oc2wlabd_h) // Sentry, use file only if it's not already included. #define __oc2wlabd_h /***************************************************************************** * * Copyright (c) 1999, KL GROUP INC. All Rights Reserved. * http://www.klgroup.com * * This file is provided for demonstration and educational uses only. * Permission to use, copy, modify and distribute this file for * any purpose and without fee is hereby granted, provided that the * above copyright notice and this permission notice appear in all * copies, and that the name of KL Group not be used in advertising * or publicity pertaining to this material without the specific, * prior written permission of an authorized representative of * KL Group. * * KL GROUP MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY * OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR * PURPOSE, OR NON-INFRINGEMENT. KL GROUP SHALL NOT BE LIABLE FOR ANY * DAMAGES SUFFERED BY USERS AS A RESULT OF USING, MODIFYING OR * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. */ /* Project oc2owl OVERVIEW ======== Class definition for oc2owlAboutDlg (TDialog). */ #include #pragma hdrstop #include "oc2wlapp.rh" // Definition of all resources. //{{TDialog = oc2owlAboutDlg}} class oc2owlAboutDlg : public TDialog { public: oc2owlAboutDlg (TWindow *parent, TResId resId = IDD_ABOUT, TModule *module = 0); virtual ~oc2owlAboutDlg (); //{{oc2owlAboutDlgVIRTUAL_BEGIN}} public: void SetupWindow (); //{{oc2owlAboutDlgVIRTUAL_END}} }; //{{oc2owlAboutDlg}} // Reading the VERSIONINFO resource. class ProjectRCVersion { public: ProjectRCVersion (TModule *module); virtual ~ProjectRCVersion (); bool GetProductName (LPSTR &prodName); bool GetProductVersion (LPSTR &prodVersion); bool GetCopyright (LPSTR ©right); bool GetDebug (LPSTR &debug); protected: LPBYTE TransBlock; void FAR *FVData; private: // Don't allow this object to be copied. ProjectRCVersion (const ProjectRCVersion &); ProjectRCVersion & operator =(const ProjectRCVersion &); }; #endif // __oc2wlabd_h sentry.