diff options
Diffstat (limited to 'wrappers/python/eduvpn_common/loader.py')
| -rw-r--r-- | wrappers/python/eduvpn_common/loader.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py index 3de3de5..1090619 100644 --- a/wrappers/python/eduvpn_common/loader.py +++ b/wrappers/python/eduvpn_common/loader.py @@ -7,6 +7,7 @@ from eduvpn_common import __version__ from eduvpn_common.types import ( ConfigError, DataError, + ReadRxBytes, VPNStateChange, ) @@ -151,3 +152,5 @@ def initialize_functions(lib: CDLL) -> None: c_int, ], c_void_p lib.ShouldRenewButton.argtypes, lib.ShouldRenewButton.restype = [], int + lib.StartFailover.argtypes, lib.StartFailover.restype = [c_char_p, c_char_p, c_int, ReadRxBytes], DataError + lib.CancelFailover.argtypes, lib.CancelFailover.restype = [c_char_p], c_void_p |
