Wrapper for proj_info � provides the global PROJ version and build information.
| 116 | |
| 117 | /// Wrapper for proj_info � provides the global PROJ version and build information. |
| 118 | MyPJ_INFO my_proj_info(void) { |
| 119 | if (!proj_info_ptr) { |
| 120 | MyPJ_INFO info = {0, 0, 0, nullptr, nullptr, nullptr}; |
| 121 | return info; |
| 122 | } |
| 123 | return proj_info_ptr(); |
| 124 | } |