Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/c/api-client.h')
-rw-r--r--api/src/c/api-client.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/api/src/c/api-client.h b/api/src/c/api-client.h
index 9335a8950b..c2abea96d3 100644
--- a/api/src/c/api-client.h
+++ b/api/src/c/api-client.h
@@ -38,6 +38,10 @@ typedef struct
char * MapsWithMe_GenShowMapUrl(MapsWithMe_ShowMapRequest const * request);
*/
+// Helper function to calculate maximum buffer size for
+// MapsWithMe_GenShortShowMapUrl (with null-terminator).
+int MapsWithMe_GetMaxBufferSize(int nameSize);
+
// Helper method to generate short url.
// Returns the number of bytes required to fit the whole URL or an error_code < 0 on error.
int MapsWithMe_GenShortShowMapUrl(double lat, double lon, double zoomLevel, char const * name, char * buf, int bufSize);