read_lanini.h 317 B

12345678910111213141516171819
  1. #if defined(BOARD_ESP32_S3_ALEKSEI)
  2. #pragma once
  3. #ifndef READ_LANINI_H
  4. #define READ_LANINI_H
  5. #include <string>
  6. #include "read_wlanini.h"
  7. extern struct wlan_config wlan_config;
  8. int LoadLanFromFile(std::string fn);
  9. bool ChangeLanHostName(std::string fn, std::string _newhostname);
  10. #endif //READ_WLANINI_H
  11. #endif