diff options
| author | Alan D. Snow <alansnow21@gmail.com> | 2020-10-19 10:20:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-19 17:20:27 +0200 |
| commit | 084f5f6cb39b3732c4cd930ebffcff86cdb24932 (patch) | |
| tree | b6e3d9bd87eecafbfe0f6f2634c4db9d00bc8e05 /docs/source/development | |
| parent | 85137d93549f2bb3dfe4fcfd371a0f1925e26417 (diff) | |
| download | PROJ-084f5f6cb39b3732c4cd930ebffcff86cdb24932.tar.gz PROJ-084f5f6cb39b3732c4cd930ebffcff86cdb24932.zip | |
C API: add proj_context_clone() (#2383)
Fixes #2382
Diffstat (limited to 'docs/source/development')
| -rw-r--r-- | docs/source/development/reference/functions.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/source/development/reference/functions.rst b/docs/source/development/reference/functions.rst index 770fb8ec..cc29743c 100644 --- a/docs/source/development/reference/functions.rst +++ b/docs/source/development/reference/functions.rst @@ -13,6 +13,14 @@ Threading contexts :returns: a new context +.. c:function:: PJ_CONTEXT* proj_context_clone(PJ_CONTEXT *ctx) + + .. versionadded:: 7.2 + + Create a new threading-context based on an existing context. + + :returns: a new context + .. c:function:: void proj_context_destroy(PJ_CONTEXT *ctx) Deallocate a threading-context. |
