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.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py
index 202e2da..036c201 100644
--- a/wrappers/python/eduvpn_common/loader.py
+++ b/wrappers/python/eduvpn_common/loader.py
@@ -108,6 +108,7 @@ def initialize_functions(lib: CDLL) -> None:
c_char_p,
c_char_p,
c_char_p,
+ c_char_p,
VPNStateChange,
c_int,
], c_void_p
@@ -157,5 +158,10 @@ 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.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