This commit is contained in:
DavidXanatos 2022-07-13 17:00:03 +02:00
parent ce20065242
commit 96f5d4e78b
2 changed files with 2 additions and 1 deletions

View File

@ -56,7 +56,7 @@ struct SBoxBorder
const WCHAR *Sandboxie_WindowClassName = L"Sandboxie_BorderWindow";
void CBoxBorder__TimerProc(HWND hwnd, UINT uMsg, UINT_PTR dwTimerID, DWORD dwTime)
void WINAPI CBoxBorder__TimerProc(HWND hwnd, UINT uMsg, UINT_PTR dwTimerID, DWORD dwTime)
{
CBoxBorder* This = (CBoxBorder*)GetWindowLongPtr(hwnd, 0);
This->TimerProc();

View File

@ -59,6 +59,7 @@ public:
bool IsDisableRecovery() {return m_pDisableRecovery && m_pDisableRecovery->isChecked();}
bool IsDisableMessages() {return m_pDisableMessages && m_pDisableMessages->isChecked();}
CSbieView* GetBoxView() { return m_pBoxView; }
CFileView* GetFileView() { return m_pFileView; }
bool RunSandboxed(const QStringList& Commands, const QString& BoxName, const QString& WrkDir = QString());