legacy/libisofs/trunk/bindings/python/isofs/defines.py
Dave db5cd63af3 Add the beginnings of a high level API to isofs. Currently only does
initialization and getting/setting volume attributes.
2007-04-13 04:56:31 +00:00

10 lines
273 B
Python

# The automatic code generator does not wrap enums into python. As
# isofs has only two enum values publicly defined, they are hardcoded
# here.
# from enum ecma119_extension_flag
ECMA119_ROCKRIDGE = 1
ECMA119_JOLIET = 2
__all__ = ['ECMA119_ROCKRIDGE', 'ECMA119_JOLIET']