mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 20:16:55 +03:00
11 lines
285 B
C++
11 lines
285 B
C++
#ifndef READ_WLANINI_H
|
|
#define READ_WLANINI_H
|
|
|
|
#include <string>
|
|
|
|
void LoadWlanFromFile(std::string fn, char *&_ssid, char *&_password, char *&_hostname, char *&_ipadr, char *&_gw, char *&_netmask, char *&_dns);
|
|
|
|
bool ChangeHostName(std::string fn, std::string _newhostname);
|
|
|
|
|
|
#endif |