10 lines
273 B
Python
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']
|