mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 06:40:37 +01:00
16 lines
325 B
C++
16 lines
325 B
C++
#include <ion.h>
|
|
#include "../shared/main.h"
|
|
|
|
extern "C" const char * IonSoftwareVersion() {
|
|
return Ion::softwareVersion();
|
|
}
|
|
|
|
extern "C" const char * IonPatchLevel() {
|
|
return Ion::patchLevel();
|
|
}
|
|
|
|
extern "C" void IonDisplayForceRefresh() {
|
|
Ion::Simulator::Main::setNeedsRefresh();
|
|
Ion::Simulator::Main::refresh();
|
|
}
|