From 976fb99da373b5318cb1e0671977575ffd68bc7b Mon Sep 17 00:00:00 2001 From: Kirill Zhdanovich Date: Mon, 8 Apr 2013 22:04:45 +0300 Subject: [PATCH] [api] Factor out api-client-internals.h --- api/internal/c/api-client-internals.h | 22 ++++++++++++++++++++++ api/tests/c/api-client-test.c | 7 +------ 2 files changed, 23 insertions(+), 6 deletions(-) create mode 100644 api/internal/c/api-client-internals.h diff --git a/api/internal/c/api-client-internals.h b/api/internal/c/api-client-internals.h new file mode 100644 index 0000000000..b7fd54329a --- /dev/null +++ b/api/internal/c/api-client-internals.h @@ -0,0 +1,22 @@ +#ifndef MAPSWITHME_API_INTERNAL_API_CLIENT_INTERNALS +#define MAPSWITHME_API_INTERNAL_API_CLIENT_INTERNALS + +#ifdef __cplusplus +extern "C" { +#endif + +#define MAPSWITHME_MAX_POINT_BYTES 10 +#define MAPSWITHME_MAX_COORD_BITS (MAPSWITHME_MAX_POINT_BYTES * 3) + +char MapsWithMe_Base64Char(int x); +int MapsWithMe_LatToInt(double lat, int maxValue); +double MapsWithMe_LonIn180180(double lon); +int MapsWithMe_LonToInt(double lon, int maxValue); +void MapsWithMe_LatLonToString(double lat, double lon, char * s, int nBytes); + +#ifdef __cplusplus +} // Closing brace for extern "C" +#endif + + +#endif // MAPSWITHME_API_INTERNAL_API_CLIENT_INTERNALS diff --git a/api/tests/c/api-client-test.c b/api/tests/c/api-client-test.c index c2fed0af55..1c6c99f20c 100644 --- a/api/tests/c/api-client-test.c +++ b/api/tests/c/api-client-test.c @@ -1,11 +1,6 @@ #include "fct.h" #include "../../src/c/api-client.h" - -char MapsWithMe_Base64Char(int x); -int MapsWithMe_LatToInt(double lat, int maxValue); -double MapsWithMe_LonIn180180(double lon); -int MapsWithMe_LonToInt(double lon, int maxValue); -void MapsWithMe_LatLonToString(double lat, double lon, char * s, int nBytes); +#include "../../internal/c/api-client-internals.h" static const int MAX_POINT_BYTES = 10; static const int TEST_COORD_BYTES = 9;