try CI
This commit is contained in:
parent
06cde1cd04
commit
d36f26fdd5
|
@ -1896,7 +1896,7 @@ int __stdcall WinMainCRTStartup(
|
|||
if (SbieApi_QueryConfBool(BoxName, L"AlertBeforeStart", FALSE)) {
|
||||
WCHAR* tips;
|
||||
wprintf(SbieDll_FormatMessage0(3198), BoxName);
|
||||
if (MessageBox(NULL, tips, L"Sandboxie Start", MB_YESNO) == IDNO)
|
||||
if (MessageBoxW(NULL, tips, L"Sandboxie Start", MB_YESNO) == IDNO)
|
||||
die(10000);
|
||||
else {
|
||||
DWORD error;
|
||||
|
@ -1905,7 +1905,7 @@ int __stdcall WinMainCRTStartup(
|
|||
WCHAR dir[1020] = L"";
|
||||
SbieApi_GetHomePath(NULL, 0, dir, 1020);
|
||||
if (wcsstr(buf, dir) == NULL)
|
||||
if (MessageBox(NULL, SbieDll_FormatMessage0(3199), L"Warn", MB_YESNO) == IDNO)
|
||||
if (MessageBoxW(NULL, SbieDll_FormatMessage0(3199), L"Warn", MB_YESNO) == IDNO)
|
||||
die(10000);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue