xremote.h 463 B

12345678910111213141516
  1. /*!
  2. * @file flipper-xremote/xremote.h
  3. @license This project is released under the GNU GPLv3 License
  4. * @copyright (c) 2023 Sandro Kalatozishvili (s.kalatoz@gmail.com)
  5. *
  6. * @brief Entrypoint and factory of the XRemote main app.
  7. */
  8. #include "xremote_app.h"
  9. #define XREMOTE_VERSION_MAJ 1
  10. #define XREMOTE_VERSION_MIN 3
  11. #define XREMOTE_BUILD_NUMBER 0
  12. /* Returns FAP_VERSION + XREMOTE_BUILD_NUMBER */
  13. void xremote_get_version(char* version, size_t length);