accept * in return value type and convert it to _ptr after the

typename, as in argument types.
(Jack)
This commit is contained in:
Guido van Rossum 1998-04-28 16:04:50 +00:00
parent db9a7b9ef6
commit 92f01c54d4
1 changed files with 2 additions and 1 deletions

View File

@ -228,7 +228,7 @@ if missing: raise "Missing Types"
# self.type_pat = "pascal[ \t\n]+\(<type>[a-zA-Z0-9_ \t]*[a-zA-Z0-9_]\)[ \t\n]+"
self.type_pat = "EXTERN_API" + \
"[ \t\n]*([ \t\n]*" + \
"\(<type>[a-zA-Z0-9_ \t]*[a-zA-Z0-9_]\)" + \
"\(<type>[a-zA-Z0-9_* \t]*[a-zA-Z0-9_*]\)" + \
"[ \t\n]*)[ \t\n]*"
self.name_pat = "\(<name>[a-zA-Z0-9_]+\)[ \t\n]*"
self.args_pat = "(\(<args>\([^(;=)]+\|([^(;=)]*)\)*\))"
@ -399,6 +399,7 @@ if missing: raise "Missing Types"
self.report("Bad raw spec: %s", `raw`)
return
type, name, args = self.whole.group('type', 'name', 'args')
type = regsub.gsub("\*", " ptr", type)
type = regsub.gsub("[ \t]+", "_", type)
if name in self.alreadydone:
self.report("Name has already been defined: %s", `name`)