Moved internal hash table definitions to swe-glib-private.h

This commit is contained in:
Gergely Polonkai 2013-09-16 13:18:46 +02:00
parent 49ec42eebe
commit 12d0dfb069
2 changed files with 5 additions and 6 deletions

View File

@ -23,6 +23,11 @@
extern gchar *gswe_ephe_path;
extern GsweTimestamp *gswe_full_moon_base_date;
extern GHashTable *gswe_planet_info_table;
extern GHashTable *gswe_sign_info_table;
extern GHashTable *gswe_house_system_info_table;
extern GHashTable *gswe_aspect_info_table;
extern GHashTable *gswe_antiscion_info_table;
GsweCoordinates *gswe_coordinates_copy(GsweCoordinates *coordinates);

View File

@ -25,12 +25,6 @@
#include "gswe-moment.h"
#include "gswe-enumtypes.h"
extern GHashTable *gswe_planet_info_table;
extern GHashTable *gswe_sign_info_table;
extern GHashTable *gswe_house_system_info_table;
extern GHashTable *gswe_aspect_info_table;
extern GHashTable *gswe_antiscion_info_table;
void gswe_init();
GType gswe_planet_info_get_type(void);