Annotation fixes

This commit is contained in:
Anonymous Maarten 2024-02-07 04:31:33 +01:00
parent 94442ebf89
commit c291f18e19
6 changed files with 19 additions and 3 deletions

View File

@ -35,6 +35,9 @@ class CAboutDialog : public CDialog {
DECLARE_MESSAGE_MAP()
};
// SYNTHETIC: CONFIG 0x00403cb0
// CAboutDialog::`scalar deleting destructor'
// FUNCTION: CONFIG 0x00403d40
// CAboutDialog::GetMessageMap

View File

@ -7,7 +7,7 @@
#include <afxwin.h>
// VTABLE CONFIG 0x004060e8
// VTABLE: CONFIG 0x004060e8
// SIZE 0x24
class CConfigCommandLineInfo : public CCommandLineInfo {
public:
@ -16,4 +16,7 @@ class CConfigCommandLineInfo : public CCommandLineInfo {
void ParseParam(LPCSTR pszParam, BOOL bFlag, BOOL bLast) override;
};
// SYNTHETIC: CONFIG 0x00403b80
// CConfigCommandLineInfo::`scalar deleting destructor'
#endif // !defined(AFX_CONFIGCOMMANDLINEINFO_H)

View File

@ -62,6 +62,9 @@ class CMainDialog : public CDialog {
DECLARE_MESSAGE_MAP()
};
// SYNTHETIC: CONFIG 0x00403de0
// CMainDialog::`scalar deleting destructor'
// FUNCTION: CONFIG 0x00403e70
// CMainDialog::GetMessageMap

View File

@ -13,6 +13,7 @@ struct MxDriver;
#define currentConfigApp ((CConfigApp*) afxCurrentWinApp)
// VTABLE: CONFIG 0x00406040
// SIZE 0x108
class CConfigApp : public CWinApp {
public:
@ -75,6 +76,9 @@ class CConfigApp : public CWinApp {
BOOL m_music; // 0x104
};
// SYNTHETIC: CONFIG 0x00402cd0
// CConfigApp::`scalar deleting destructor'
// FUNCTION: CONFIG 0x402c30
// CConfigApp::GetMessageMap

View File

@ -94,8 +94,9 @@ def main():
would_fail = error_count > 0 or (warning_count > 0 and args.warnfail)
if would_fail:
sys.exit(1)
return 1
return 0
if __name__ == "__main__":
main()
raise SystemExit(main())

2
tools/vtable/vtable.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
import os
import argparse
import logging