mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-02-02 03:38:43 -05:00
19 lines
305 B
C++
19 lines
305 B
C++
#include "Sanity.h"
|
|
#include "Process.h"
|
|
|
|
void gbshutdownAbort( bool save_on_abort ) {
|
|
g_process.shutdownAbort(save_on_abort);
|
|
}
|
|
|
|
void gbshutdownResourceError() {
|
|
gbshutdownAbort(false);
|
|
}
|
|
|
|
void gbshutdownLogicError() {
|
|
gbshutdownAbort(true);
|
|
}
|
|
|
|
void gbshutdownCorrupted() {
|
|
gbshutdownAbort(false);
|
|
}
|