diff options
Diffstat (limited to 'python/libghdl/thin/vhdl/parse.py')
-rw-r--r-- | python/libghdl/thin/vhdl/parse.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/libghdl/thin/vhdl/parse.py b/python/libghdl/thin/vhdl/parse.py new file mode 100644 index 000000000..c6fbb5259 --- /dev/null +++ b/python/libghdl/thin/vhdl/parse.py @@ -0,0 +1,7 @@ +from libghdl import libghdl +from ctypes import c_bool + +Parse_Design_File = libghdl.vhdl__parse__parse_design_file + +Flag_Parse_Parenthesis = c_bool.in_dll( + libghdl, "vhdl__parse__flag_parse_parenthesis") |