ibutton.cpp 180 B

12345678910
  1. #include "ibutton-app.h"
  2. // app enter function
  3. extern "C" int32_t app_ibutton(void* p) {
  4. iButtonApp* app = new iButtonApp();
  5. app->run();
  6. delete app;
  7. return 255;
  8. }