mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-28 10:41:15 +00:00
format
This commit is contained in:
parent
ffd23424a6
commit
9250749c0f
@ -1,9 +1,8 @@
|
||||
#if !defined(AFX_ABOUTDLG_H)
|
||||
#define AFX_ABOUTDLG_H
|
||||
|
||||
#include "common.h"
|
||||
|
||||
#include "afxwin.h"
|
||||
#include "common.h"
|
||||
#include "compat.h"
|
||||
#include "res/resource.h"
|
||||
|
||||
|
||||
@ -1,9 +1,8 @@
|
||||
#if !defined(AFX_MAINDLG_H)
|
||||
#define AFX_MAINDLG_H
|
||||
|
||||
#include "common.h"
|
||||
|
||||
#include "afxwin.h"
|
||||
#include "common.h"
|
||||
#include "compat.h"
|
||||
#include "decomp.h"
|
||||
#include "res/resource.h"
|
||||
|
||||
@ -1,26 +1,28 @@
|
||||
#include "common.h"
|
||||
|
||||
|
||||
// FUNCTION: CONFIG 0x00402ca0
|
||||
void CSerializer::Serialize(CArchive& ar) {
|
||||
void CSerializer::Serialize(CArchive& ar)
|
||||
{
|
||||
}
|
||||
|
||||
// FUNCTION: CONFIG 0x00402cb0
|
||||
void CSerializer::AssertValid() const {
|
||||
void CSerializer::AssertValid() const
|
||||
{
|
||||
}
|
||||
|
||||
// FUNCTION: CONFIG 0x00402cc0
|
||||
void CSerializer::Dump(CDumpContext& dc) const {
|
||||
void CSerializer::Dump(CDumpContext& dc) const
|
||||
{
|
||||
}
|
||||
|
||||
// FUNCTION: CONFIG 0x00403c90
|
||||
void CCommonDialog::BeginModalState()
|
||||
{
|
||||
::EnableWindow(m_hWnd, FALSE);
|
||||
::EnableWindow(m_hWnd, FALSE);
|
||||
}
|
||||
|
||||
// FUNCTION: CONFIG 0x00403ca0
|
||||
void CCommonDialog::EndModalState()
|
||||
{
|
||||
::EnableWindow(m_hWnd, TRUE);
|
||||
::EnableWindow(m_hWnd, TRUE);
|
||||
}
|
||||
|
||||
@ -1,23 +1,23 @@
|
||||
#ifndef AFX_COMMON_H
|
||||
#define AFX_COMMON_H
|
||||
|
||||
#include <afxwin.h>
|
||||
|
||||
#include "compat.h"
|
||||
|
||||
#include <afxwin.h>
|
||||
|
||||
class CSerializer {
|
||||
public:
|
||||
void Serialize(CArchive& ar);
|
||||
void AssertValid() const;
|
||||
void Dump(CDumpContext& dc) const;
|
||||
void Serialize(CArchive& ar);
|
||||
void AssertValid() const;
|
||||
void Dump(CDumpContext& dc) const;
|
||||
};
|
||||
|
||||
class CCommonDialog : public CDialog {
|
||||
public:
|
||||
CCommonDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL) : CDialog(nIDTemplate, pParentWnd) { }
|
||||
CCommonDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL) : CDialog(nIDTemplate, pParentWnd) {}
|
||||
|
||||
void BeginModalState() override;
|
||||
void EndModalState() override;
|
||||
void BeginModalState() override;
|
||||
void EndModalState() override;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Loading…
Reference in New Issue
Block a user