mxml_demo.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /**
  2. @file
  3. osi_demo.h
  4. @brief
  5. This file provides the definitions for nw demo, and declares the
  6. API functions.
  7. */
  8. /*============================================================================
  9. Copyright (c) 2020 Quectel Wireless Solution, Co., Ltd. All Rights Reserved.
  10. Quectel Wireless Solution Proprietary and Confidential.
  11. =============================================================================*/
  12. /*===========================================================================
  13. EDIT HISTORY FOR MODULE
  14. This section contains comments describing changes made to the module.
  15. Notice that changes are listed in reverse chronological order.
  16. WHEN WHO WHAT, WHERE, WHY
  17. ---------- ------------ ----------------------------------------------------
  18. =============================================================================*/
  19. #ifndef _MXML_DEMO_H_
  20. #define _MXML_DEMO_H_
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. #define XML_TEST_DISK "UFS:"
  25. #define XML_TEST_DIR "xml_dir"
  26. #define XML_FILE_NAME "test_xml.xml"
  27. #define XML_DIR_PATH ""XML_TEST_DISK"/"XML_TEST_DIR""
  28. #define XML_FILE_PATH ""XML_DIR_PATH"/"XML_FILE_NAME""
  29. /*========================================================================
  30. * function Definition
  31. *========================================================================*/
  32. int ql_mxml_app_init(void);
  33. #ifdef __cplusplus
  34. }/*"C" */
  35. #endif
  36. #endif