Add the beginnings of a high level API to isofs. Currently only does

initialization and getting/setting volume attributes.
This commit is contained in:
Dave
2007-04-13 04:56:31 +00:00
parent eaf0e26bff
commit db5cd63af3
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# 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']