enlightenment-module-forecasts/src/forecast_places.h

28 lines
439 B
C
Raw Permalink Normal View History

2021-02-18 04:21:49 -08:00
#ifndef FORECAST_PLACES_H
#define FORECAST_PLACES_H
#include <Eina.h>
typedef struct Places_Category Places_Category;
struct Places_Category
{
char name[128];
int id;
};
typedef struct Places_Location Places_Location;
struct Places_Location {
char name[128];
char region[128];
char lat[64];
char lon[64];
};
Eina_List *
forecast_places_categories(void);
Eina_List *
forecast_places_by_category(int id);
#endif