Include Finder.h too in the list of header files to parse: the finder

constants have tradiationally been in MACFS.py.
This commit is contained in:
Jack Jansen 2002-12-17 22:22:57 +00:00
parent b4289b5771
commit ae63756bf8
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ LONG = "Files"
SHORT = "file" SHORT = "file"
def main(): def main():
input = ["Files.h", "Aliases.h"] input = ["Files.h", "Aliases.h", "Finder.h"]
output = SHORT + "gen.py" output = SHORT + "gen.py"
defsoutput = TOOLBOXDIR + LONG + ".py" defsoutput = TOOLBOXDIR + LONG + ".py"
scanner = MyScanner(input, output, defsoutput) scanner = MyScanner(input, output, defsoutput)
@ -55,6 +55,7 @@ class MyScanner(Scanner_OSX):
"kioACAccessOwnerMask", "kioACAccessOwnerMask",
"kFSCatInfoReserved", "kFSCatInfoReserved",
"kFSIterateReserved", "kFSIterateReserved",
"kSystemFolderType",
"FSRefMakePath", # Do this manually "FSRefMakePath", # Do this manually
# "ResolveAlias", # Do this manually # "ResolveAlias", # Do this manually