This commit is contained in:
Anonymous Maarten 2024-02-07 07:23:39 +01:00
parent ffd23424a6
commit 9250749c0f
4 changed files with 18 additions and 18 deletions

View File

@ -1,9 +1,8 @@
#if !defined(AFX_ABOUTDLG_H) #if !defined(AFX_ABOUTDLG_H)
#define AFX_ABOUTDLG_H #define AFX_ABOUTDLG_H
#include "common.h"
#include "afxwin.h" #include "afxwin.h"
#include "common.h"
#include "compat.h" #include "compat.h"
#include "res/resource.h" #include "res/resource.h"

View File

@ -1,9 +1,8 @@
#if !defined(AFX_MAINDLG_H) #if !defined(AFX_MAINDLG_H)
#define AFX_MAINDLG_H #define AFX_MAINDLG_H
#include "common.h"
#include "afxwin.h" #include "afxwin.h"
#include "common.h"
#include "compat.h" #include "compat.h"
#include "decomp.h" #include "decomp.h"
#include "res/resource.h" #include "res/resource.h"

View File

@ -1,26 +1,28 @@
#include "common.h" #include "common.h"
// FUNCTION: CONFIG 0x00402ca0 // FUNCTION: CONFIG 0x00402ca0
void CSerializer::Serialize(CArchive& ar) { void CSerializer::Serialize(CArchive& ar)
{
} }
// FUNCTION: CONFIG 0x00402cb0 // FUNCTION: CONFIG 0x00402cb0
void CSerializer::AssertValid() const { void CSerializer::AssertValid() const
{
} }
// FUNCTION: CONFIG 0x00402cc0 // FUNCTION: CONFIG 0x00402cc0
void CSerializer::Dump(CDumpContext& dc) const { void CSerializer::Dump(CDumpContext& dc) const
{
} }
// FUNCTION: CONFIG 0x00403c90 // FUNCTION: CONFIG 0x00403c90
void CCommonDialog::BeginModalState() void CCommonDialog::BeginModalState()
{ {
::EnableWindow(m_hWnd, FALSE); ::EnableWindow(m_hWnd, FALSE);
} }
// FUNCTION: CONFIG 0x00403ca0 // FUNCTION: CONFIG 0x00403ca0
void CCommonDialog::EndModalState() void CCommonDialog::EndModalState()
{ {
::EnableWindow(m_hWnd, TRUE); ::EnableWindow(m_hWnd, TRUE);
} }

View File

@ -1,23 +1,23 @@
#ifndef AFX_COMMON_H #ifndef AFX_COMMON_H
#define AFX_COMMON_H #define AFX_COMMON_H
#include <afxwin.h>
#include "compat.h" #include "compat.h"
#include <afxwin.h>
class CSerializer { class CSerializer {
public: public:
void Serialize(CArchive& ar); void Serialize(CArchive& ar);
void AssertValid() const; void AssertValid() const;
void Dump(CDumpContext& dc) const; void Dump(CDumpContext& dc) const;
}; };
class CCommonDialog : public CDialog { class CCommonDialog : public CDialog {
public: public:
CCommonDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL) : CDialog(nIDTemplate, pParentWnd) { } CCommonDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL) : CDialog(nIDTemplate, pParentWnd) {}
void BeginModalState() override; void BeginModalState() override;
void EndModalState() override; void EndModalState() override;
}; };
#endif #endif