Commit ae63756b authored by Jack Jansen's avatar Jack Jansen

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

constants have tradiationally been in MACFS.py.
parent b4289b57
...@@ -10,7 +10,7 @@ LONG = "Files" ...@@ -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): ...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment