mirror of
https://github.com/geode-sdk/geode.git
synced 2025-01-08 21:52:01 -05:00
17 lines
265 B
C++
17 lines
265 B
C++
#include <crashlog.hpp>
|
|
|
|
#ifdef GEODE_IS_IOS
|
|
|
|
bool crashlog::setupPlatformHandler() {
|
|
return false;
|
|
}
|
|
|
|
bool crashlog::didLastLaunchCrash() {
|
|
return false;
|
|
}
|
|
|
|
ghc::filesystem::path crashlog::getCrashLogDirectory() {
|
|
return "";
|
|
}
|
|
|
|
#endif
|