Gergely Polonkai (W00d5t0ck)
6d84d650b5
This is to satisfy #8, although it's not fully implemented yet.
49 lines
1.7 KiB
C
49 lines
1.7 KiB
C
/*
|
|
* Copyright © 2013 Gergely Polonkai
|
|
*
|
|
* SWE-GLib is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* SWE-GLib is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifdef __SWE_GLIB_BUILDING__
|
|
#ifndef __SWE_GLIB_PRIVATE_H__
|
|
|
|
#include "gswe-timestamp.h"
|
|
#include "gswe-types.h"
|
|
#include "gswe-moon-phase-data-private.h"
|
|
#include "gswe-sign-info-private.h"
|
|
#include "gswe-planet-info-private.h"
|
|
#include "gswe-planet-data-private.h"
|
|
#include "gswe-aspect-info-private.h"
|
|
#include "gswe-aspect-data-private.h"
|
|
#include "gswe-antiscion-axis-info-private.h"
|
|
#include "gswe-antiscion-data-private.h"
|
|
#include "gswe-house-system-info-private.h"
|
|
#include "gswe-house-data-private.h"
|
|
|
|
extern gboolean gswe_initialized;
|
|
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_axis_info_table;
|
|
|
|
GsweCoordinates *gswe_coordinates_copy(GsweCoordinates *coordinates);
|
|
|
|
#endif /* __SWE_GLIB_PRIVATE_H__ */
|
|
#else /* not defined __SWE_GLIB_BUILDING__ */
|
|
#error __FILE__ "Can not be included, unless building SWE-GLib"
|
|
#endif /* __SWE_GLIB_BUILDING__ */
|
|
|