mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Fixed incorrect call to InstallHandler and a few other things
This commit is contained in:
parent
21eb0b56a8
commit
5050199787
6 changed files with 61 additions and 21 deletions
|
@ -59,7 +59,7 @@ class AppleEventsScanner(Scanner):
|
|||
def makeblacklistnames(self):
|
||||
return [
|
||||
"AEDisposeDesc",
|
||||
"AEGetEventHandler",
|
||||
# "AEGetEventHandler",
|
||||
]
|
||||
|
||||
def makeblacklisttypes(self):
|
||||
|
@ -84,6 +84,12 @@ class AppleEventsScanner(Scanner):
|
|||
([("EventHandlerProcPtr", "*", "OutMode"), ("long", "*", "OutMode")],
|
||||
[("EventHandler", "*", "*")]),
|
||||
|
||||
([("AEEventHandlerUPP", "*", "InMode"), ("long", "*", "InMode")],
|
||||
[("EventHandler", "*", "*")]),
|
||||
|
||||
([("AEEventHandlerUPP", "*", "OutMode"), ("long", "*", "OutMode")],
|
||||
[("EventHandler", "*", "*")]),
|
||||
|
||||
([("void", "*", "OutMode"), ("Size", "*", "InMode"),
|
||||
("Size", "*", "OutMode")],
|
||||
[("VarVarOutBuffer", "*", "InOutMode")]),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue