appAuth.h 202 B

12345678910111213
  1. #ifndef __APP_AUTH_H
  2. #define __APP_AUTH_H
  3. #include "stdbool.h"
  4. char authRecvPro(const char *data, unsigned int length);
  5. void localAuthNow(void);
  6. bool localAuthOk(void);
  7. #define DEVELOP_MODE
  8. #endif