summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpn_common/loader.py
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/python/eduvpn_common/loader.py')
-rw-r--r--wrappers/python/eduvpn_common/loader.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py
index f299f94..fc3d090 100644
--- a/wrappers/python/eduvpn_common/loader.py
+++ b/wrappers/python/eduvpn_common/loader.py
@@ -21,6 +21,8 @@ from eduvpn_common.types import (
def load_lib() -> CDLL:
"""The function that loads the Go shared library
+ :meta private:
+
:return: The Go shared library loaded with cdll.LoadLibrary from ctypes
:rtype: CDLL
"""
@@ -61,6 +63,7 @@ def initialize_functions(lib: CDLL) -> None:
:param lib: CDLL: The Go shared library
+ :meta private:
"""
# Exposed functions
# We have to use c_void_p instead of c_char_p to free it properly