Commit 6a609158 authored by Jack Jansen's avatar Jack Jansen

Don't blacklist ModalFilterUPP but always pass it as NULL. This enables the...

Don't blacklist ModalFilterUPP but always pass it as NULL. This enables the record routines to be generated.
parent e62ceac7
...@@ -64,6 +64,7 @@ class SoundScanner(Scanner): ...@@ -64,6 +64,7 @@ class SoundScanner(Scanner):
'SndStopFilePlay', 'SndStopFilePlay',
'SndStartFilePlay', 'SndStartFilePlay',
'SndPauseFilePlay', 'SndPauseFilePlay',
'SndRecordToFile',
])] ])]
def makeblacklisttypes(self): def makeblacklisttypes(self):
...@@ -78,7 +79,6 @@ class SoundScanner(Scanner): ...@@ -78,7 +79,6 @@ class SoundScanner(Scanner):
"SoundComponentData", "SoundComponentData",
"SoundComponentData_ptr", "SoundComponentData_ptr",
"SoundConverter", "SoundConverter",
"ModalFilterUPP",
] ]
def makerepairinstructions(self): def makerepairinstructions(self):
......
...@@ -45,6 +45,7 @@ SndCommand = OpaqueType('SndCommand', 'SndCmd') ...@@ -45,6 +45,7 @@ SndCommand = OpaqueType('SndCommand', 'SndCmd')
SndCommand_ptr = OpaqueType('SndCommand', 'SndCmd') SndCommand_ptr = OpaqueType('SndCommand', 'SndCmd')
SndListHandle = OpaqueByValueType("SndListHandle", "ResObj") SndListHandle = OpaqueByValueType("SndListHandle", "ResObj")
SPBPtr = OpaqueByValueType("SPBPtr", "SPBObj") SPBPtr = OpaqueByValueType("SPBPtr", "SPBObj")
ModalFilterUPP = FakeType("(ModalFilterUPP)0")
# #
# NOTE: the following is pretty dangerous. For void pointers we pass buffer addresses # NOTE: the following is pretty dangerous. For void pointers we pass buffer addresses
......
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