diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-26 18:15:37 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-26 21:56:33 +0100 |
commit | ab3c672925cb214be9d732835e891557a511b173 (patch) | |
tree | cb135fa45d8c5e2e21eb18dc38da27d2be6cf279 /pyGHDL/libghdl/_decorator.py | |
parent | d5a56477c79d0ad8de146547554233dd62be36e8 (diff) | |
download | ghdl-ab3c672925cb214be9d732835e891557a511b173.tar.gz ghdl-ab3c672925cb214be9d732835e891557a511b173.tar.bz2 ghdl-ab3c672925cb214be9d732835e891557a511b173.zip |
pyGHDL: update and add prints.py
Diffstat (limited to 'pyGHDL/libghdl/_decorator.py')
-rw-r--r-- | pyGHDL/libghdl/_decorator.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/_decorator.py b/pyGHDL/libghdl/_decorator.py index 1648755c7..663c90eae 100644 --- a/pyGHDL/libghdl/_decorator.py +++ b/pyGHDL/libghdl/_decorator.py @@ -35,6 +35,7 @@ from ctypes import ( c_int32, c_uint32, c_char_p, + c_void_p, c_bool, c_double, Structure, @@ -99,7 +100,7 @@ def BindToLibGHDL(subprogramName): return c_bool elif typ is bytes: return c_char_p - elif typ in (c_char, c_char_p, c_uint32): + elif typ in (c_char, c_char_p, c_uint32, c_void_p): return typ elif isinstance(typ, TypeVar): # Humm, recurse ? |