MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / AskRepeatWrite

Method AskRepeatWrite

Libraries/unrar/errhnd.cpp:103–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101
102
103bool ErrorHandler::AskRepeatWrite(const wchar *FileName,bool DiskFull)
104{
105#ifndef SILENT
106 if (!Silent)
107 {
108 // We do not display "repeat write" prompt in Android, so we do not
109 // need the matching system error message.
110 SysErrMsg();
111 bool Repeat=uiAskRepeatWrite(FileName,DiskFull);
112 if (!Repeat) // Disable shutdown if user pressed Cancel in error dialog.
113 DisableShutdown=true;
114 return Repeat;
115 }
116#endif
117 return false;
118}
119
120
121void ErrorHandler::SeekError(const wchar *FileName)

Callers 1

WriteMethod · 0.80

Calls 1

uiAskRepeatWriteFunction · 0.85

Tested by

no test coverage detected