mirror of https://github.com/python/cpython
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:
parent
b4289b5771
commit
ae63756bf8
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue