flip_weather_parse.h 429 B

12345678910111213141516
  1. #ifndef FLIP_WEATHER_PARSE_H
  2. #define FLIP_WEATHER_PARSE_H
  3. #include <flip_weather.h>
  4. extern bool sent_get_request;
  5. extern bool get_request_success;
  6. extern bool got_ip_address;
  7. extern bool geo_information_processed;
  8. extern bool weather_information_processed;
  9. bool flip_weather_parse_ip_address();
  10. bool flip_weather_handle_ip_address();
  11. bool send_geo_location_request();
  12. void process_geo_location();
  13. void process_weather();
  14. #endif