mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
ccb6223d70
* mxdirectdraw: no need to explicitly add a terminating '\0' in C * mxstopwatch must include LIMITS.H for ULONG_MAX * Add Config app * 88.78% * style fixes * Test more CONFIG things * Add a few assertions on MFC classes * reformat * actionSSSSSSSSSSSSSSS * actions again * decomplint needed a shebang * Fix annotations of Message Map entries * ci: We're building CONFIG.EXE, not CONFIG.DLL * remove ninja.exe * Fix CAboutDialog::GetMessageMap annotation * format reloaded * Fix global CConfigApp object annotation * trigger worflows * ci: request at least python 3 * oops :) * curl CONFIGPROGRESS-OLD.TXT will fail * Forget about actions/setup-python (for now) * Annotation fixes * Config tweaks and MxDirect3d annotations * It's important to compare against the correct file * Introduce common CDialog parent for CAboutDialog and CMainDialog * format * Remove CSerializer --------- Co-authored-by: disinvite <disinvite@users.noreply.github.com>
49 lines
975 B
C++
49 lines
975 B
C++
#if !defined(AFX_ABOUTDLG_H)
|
|
#define AFX_ABOUTDLG_H
|
|
|
|
#include "afxwin.h"
|
|
#include "common.h"
|
|
#include "compat.h"
|
|
#include "res/resource.h"
|
|
|
|
// VTABLE: CONFIG 0x00406308
|
|
// SIZE 0x60
|
|
class CAboutDialog : public CCommonDialog {
|
|
public:
|
|
CAboutDialog();
|
|
// Dialog Data
|
|
//{{AFX_DATA(CMainDialog)
|
|
enum {
|
|
IDD = IDD_ABOUT
|
|
};
|
|
//}}AFX_DATA
|
|
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CMainDialog)
|
|
|
|
protected:
|
|
void DoDataExchange(CDataExchange* pDX) override;
|
|
//}}AFX_VIRTUAL
|
|
// void UpdateInterface();
|
|
// void SwitchToAdvanced(BOOL p_advanced);
|
|
// Implementation
|
|
|
|
protected:
|
|
//{{AFX_MSG(CMainDialog)
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
// SYNTHETIC: CONFIG 0x00403cb0
|
|
// CAboutDialog::`scalar deleting destructor'
|
|
|
|
// FUNCTION: CONFIG 0x00403d40
|
|
// CAboutDialog::GetMessageMap
|
|
|
|
// GLOBAL: CONFIG 0x00406100
|
|
// CAboutDialog::messageMap
|
|
|
|
// GLOBAL: CONFIG 0x00406108
|
|
// CAboutDialog::_messageEntries
|
|
|
|
#endif // !defined(AFX_ABOUTDLG_H)
|