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