14 lines
285 B
Python
14 lines
285 B
Python
f = Function(void, 'OpenDeskAcc',
|
|
(Str255, 'name', InMode),
|
|
)
|
|
functions.append(f)
|
|
|
|
as_resource_body = """
|
|
return ResObj_New((Handle)_self->ob_itself);
|
|
"""
|
|
|
|
f = ManualGenerator("as_Resource", as_resource_body)
|
|
f.docstring = lambda : "Return this Menu as a Resource"
|
|
|
|
methods.append(f)
|