Skip to content

Commit

Permalink
Added extension_format defines in ovf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz committed Aug 19, 2021
1 parent 97adfad commit 29f3b2c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/ovf/ovf.py
Expand Up @@ -17,6 +17,10 @@
FILEFORMAT_TEXT = 3
FILEFORMAT_CSV = 4

EXTENSION_FORMAT_OVF = 0
EXTENSION_FORMAT_AOVF = 1
EXTENSION_FORMAT_AOVF_COMP = 2

class ovf_segment(ctypes.Structure):
### Some properties
_fields_ = [
Expand Down Expand Up @@ -118,7 +122,7 @@ class _ovf_file(ctypes.Structure):
("found", ctypes.c_bool),
("is_ovf", ctypes.c_bool),
("n_segments", ctypes.c_int),
("atomistic", ctypes.c_bool),
("ovf_extension_format", ctypes.c_int),
("_state", ctypes.c_void_p)
]

Expand Down

0 comments on commit 29f3b2c

Please sign in to comment.