blob: 2242c5a355365d9b190818873d957bb0630f43e8 [file] [log] [blame]
Guido van Rossum17448e21995-01-30 11:53:55 +00001f = Function(void, 'GlobalToLocal',
2 (Point, 'thePoint', InOutMode),
3)
4functions.append(f)
5
6f = Function(void, 'LocalToGlobal',
7 (Point, 'thePoint', InOutMode),
8)
9functions.append(f)
10
11f = Function(void, 'SetPort',
12 (WindowPtr, 'thePort', InMode),
13)
14functions.append(f)
15
16f = Function(void, 'ClipRect',
17 (Rect, 'r', InMode),
18)
19functions.append(f)
20
21f = Function(void, 'EraseRect',
22 (Rect, 'r', InMode),
23)
24functions.append(f)
25
26f = Function(void, 'OpenDeskAcc',
27 (Str255, 'name', InMode),
28)
29functions.append(f)