diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2022-03-11 08:39:05 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2022-03-11 07:39:27 +0000 |
| commit | 9b35b53275e3ebf1986236736a5f6ffb2695db1a (patch) | |
| tree | 6fcd65ff7c8e1097679fb9cb26ac64fe230c738b | |
| parent | d54cc9e44759818f3356c35c7b59f3ffaf7213db (diff) | |
| download | PROJ-9b35b53275e3ebf1986236736a5f6ffb2695db1a.tar.gz PROJ-9b35b53275e3ebf1986236736a5f6ffb2695db1a.zip | |
Merge pull request #3112 from direvus/2540-doxygen-missing-funcs
DOCS: add missing functions from filemanager.cpp
| -rw-r--r-- | docs/source/development/reference/functions.rst | 6 | ||||
| -rw-r--r-- | src/proj.h | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/docs/source/development/reference/functions.rst b/docs/source/development/reference/functions.rst index 0e3eeada..7a6b37a1 100644 --- a/docs/source/development/reference/functions.rst +++ b/docs/source/development/reference/functions.rst @@ -880,9 +880,15 @@ Setting custom I/O functions .. doxygenfunction:: proj_context_set_sqlite3_vfs_name :project: doxygen_api +.. doxygenfunction:: proj_context_set_file_finder + :project: doxygen_api + .. doxygenfunction:: proj_context_set_search_paths :project: doxygen_api +.. doxygenfunction:: proj_context_set_ca_bundle_path + :project: doxygen_api + Network related functionality ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ @@ -379,12 +379,12 @@ PJ_CONTEXT PROJ_DLL *proj_context_clone (PJ_CONTEXT *ctx); /** Callback to resolve a filename to a full path */ typedef const char* (*proj_file_finder) (PJ_CONTEXT *ctx, const char*, void* user_data); +/*! @endcond */ void PROJ_DLL proj_context_set_file_finder(PJ_CONTEXT *ctx, proj_file_finder finder, void* user_data); -/*! @endcond */ void PROJ_DLL proj_context_set_search_paths(PJ_CONTEXT *ctx, int count_paths, const char* const* paths); -/*! @cond Doxygen_Suppress */ void PROJ_DLL proj_context_set_ca_bundle_path(PJ_CONTEXT *ctx, const char *path); +/*! @cond Doxygen_Suppress */ void PROJ_DLL proj_context_use_proj4_init_rules(PJ_CONTEXT *ctx, int enable); int PROJ_DLL proj_context_get_use_proj4_init_rules(PJ_CONTEXT *ctx, int from_legacy_code_path); |
