- Create `Include/` folder for all main projects - Fix some issues here and there (found while moving things) - All includes are now in `Tactility/` subfolder and must be included with that prefix. This fixes issues with clashing POSIX headers (e.g. `<semaphore.h>` versus Tactility's `Semaphore.h`)
19 lines
560 B
C++
19 lines
560 B
C++
#include "tt_app_alertdialog.h"
|
|
#include <Tactility/app/alertdialog/AlertDialog.h>
|
|
|
|
extern "C" {
|
|
|
|
void tt_app_alertdialog_start(const char* title, const char* message, const char* buttonLabels[], uint32_t buttonLabelCount) {
|
|
std::vector<std::string> list;
|
|
for (int i = 0; i < buttonLabelCount; i++) {
|
|
list.emplace_back(buttonLabels[i]);
|
|
}
|
|
tt::app::alertdialog::start(title, message, list);
|
|
}
|
|
|
|
int32_t tt_app_alertdialog_get_result_index(BundleHandle handle) {
|
|
return tt::app::alertdialog::getResultIndex(*(tt::Bundle*)handle);
|
|
}
|
|
|
|
}
|