mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
14 lines
229 B
C++
14 lines
229 B
C++
|
#include "common.h"
|
||
|
|
||
|
// FUNCTION: CONFIG 0x00403c90
|
||
|
void CCommonDialog::BeginModalState()
|
||
|
{
|
||
|
::EnableWindow(m_hWnd, FALSE);
|
||
|
}
|
||
|
|
||
|
// FUNCTION: CONFIG 0x00403ca0
|
||
|
void CCommonDialog::EndModalState()
|
||
|
{
|
||
|
::EnableWindow(m_hWnd, TRUE);
|
||
|
}
|