diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-03-22 10:50:52 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-03-22 10:50:52 +0100 |
| commit | eb5a1f2e9d47530c1896f49a2c4e7ffc82bcce4f (patch) | |
| tree | 60487ffce8ab9ee15e7ca10ef25b5d51288a24e6 /wrappers/python/eduvpncommon/__init__.py | |
| parent | 324202a50e440cac36a756d6a2628ebadd2f8d70 (diff) | |
Python: Fix wrapping type errors
Diffstat (limited to 'wrappers/python/eduvpncommon/__init__.py')
| -rw-r--r-- | wrappers/python/eduvpncommon/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/python/eduvpncommon/__init__.py b/wrappers/python/eduvpncommon/__init__.py index a5efb40..b79c980 100644 --- a/wrappers/python/eduvpncommon/__init__.py +++ b/wrappers/python/eduvpncommon/__init__.py @@ -22,7 +22,7 @@ lib = cdll.LoadLibrary(str(pathlib.Path(__file__).parent / "lib" / _libfile)) VPNStateChange = CFUNCTYPE(None, c_char_p, c_char_p, c_char_p) # Exposed functions -lib.Register.argtypes, lib.Register.restype = [c_char_p, VPNStateChange], None +lib.Register.argtypes, lib.Register.restype = [c_char_p, c_char_p, VPNStateChange], None # We have to use c_void_p instead of c_char_p to free it properly # See https://stackoverflow.com/questions/13445568/python-ctypes-how-to-free-memory-getting-invalid-pointer-error lib.FreeString.argtypes, lib.FreeString.restype = [c_void_p], None |
