New appearance mgr support. This appears (no pun intended) to have some problems that I'll fix tonight, so don't check it out.

This commit is contained in:
Jack Jansen 1999-12-10 16:16:19 +00:00
parent 09ac088152
commit d6bc4e7fc0
3 changed files with 631 additions and 1 deletions

View file

@ -40,12 +40,24 @@ class MyScanner(Scanner):
def makeblacklistnames(self):
return [
"GetThemeFont", # Funny stringbuffer in/out parameter, I think...
]
def makeblacklisttypes(self):
return [
"MenuTitleDrawingUPP",
"MenuItemDrawingUPP",
"ThemeIteratorUPP",
"ThemeTabTitleDrawUPP",
"ThemeEraseUPP",
"ThemeButtonDrawUPP",
"WindowTitleDrawingUPP",
"ProcessSerialNumber_ptr", # Too much work for now.
"ThemeTrackDrawInfo_ptr", # Too much work
"ThemeButtonDrawInfo_ptr", # ditto
"ThemeWindowMetrics_ptr", # ditto
"ThemeDrawingState", # This is an opaque pointer, so it should be simple. Later.
"Collection", # No interface to collection mgr yet.
]
def makerepairinstructions(self):