mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
23 lines
513 B
C++
23 lines
513 B
C++
|
#include "ConfigCommandLineInfo.h"
|
||
|
|
||
|
#include "decomp.h"
|
||
|
|
||
|
DECOMP_SIZE_ASSERT(CCommandLineInfo, 0x24)
|
||
|
DECOMP_SIZE_ASSERT(CConfigCommandLineInfo, 0x24)
|
||
|
|
||
|
// FUNCTION: CONFIG 0x00403b10
|
||
|
CConfigCommandLineInfo::CConfigCommandLineInfo()
|
||
|
{
|
||
|
currentConfigApp->m_run_config_dialog = FALSE;
|
||
|
}
|
||
|
|
||
|
// FUNCTION: CONFIG 0x00403bf0
|
||
|
void CConfigCommandLineInfo::ParseParam(LPCSTR pszParam, BOOL bFlag, BOOL bLast)
|
||
|
{
|
||
|
if (bFlag) {
|
||
|
if (lstrcmpiA(pszParam, "config") == 0) {
|
||
|
currentConfigApp->m_run_config_dialog = TRUE;
|
||
|
}
|
||
|
}
|
||
|
}
|