diff options
Diffstat (limited to 'Mac/Modules/list/listscan.py')
-rw-r--r-- | Mac/Modules/list/listscan.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Mac/Modules/list/listscan.py b/Mac/Modules/list/listscan.py index a5dd9eb..b8bd549 100644 --- a/Mac/Modules/list/listscan.py +++ b/Mac/Modules/list/listscan.py @@ -40,10 +40,24 @@ class MyScanner(Scanner): "LDispose", # Done by removing the object "LSearch", # We don't want to handle procs just yet "LGetCellDataLocation", # What does this do?? + + # These have funny argument/return values + "GetListViewBounds", + "GetListCellIndent", + "GetListCellSize", + "GetListVisibleCells", + "GetListClickLocation", + "GetListMouseLocation", + "GetListDataBounds", + "SetListLastClick", ] def makeblacklisttypes(self): return [ + 'ListDefSpec', # Too difficult for now + 'ListDefSpec_ptr', # ditto + "ListDefUPP", + "ListClickLoopUPP", ] def makerepairinstructions(self): |