diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-04-16 14:33:21 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-04-16 14:33:21 (GMT) |
commit | ded81a1ffe5c4398968888715b98b618f0604c37 (patch) | |
tree | 4615649ab17c51f51c1d12b10edf4074c120a8e5 /Mac/Modules/list | |
parent | 19171a21fdff4f63ca35b3cafc96a86280d0539b (diff) | |
download | cpython-ded81a1ffe5c4398968888715b98b618f0604c37.zip cpython-ded81a1ffe5c4398968888715b98b618f0604c37.tar.gz cpython-ded81a1ffe5c4398968888715b98b618f0604c37.tar.bz2 |
Removed ...gen.py files from repository
Diffstat (limited to 'Mac/Modules/list')
-rw-r--r-- | Mac/Modules/list/listgen.py | 160 |
1 files changed, 0 insertions, 160 deletions
diff --git a/Mac/Modules/list/listgen.py b/Mac/Modules/list/listgen.py deleted file mode 100644 index f6b8d86..0000000 --- a/Mac/Modules/list/listgen.py +++ /dev/null @@ -1,160 +0,0 @@ -# Generated from 'Sap:CW8 Gold:Metrowerks CodeWarrior:MacOS Support:Headers:Universal Headers:Lists.h' - -f = Function(ListRef, 'LNew', - (Rect_ptr, 'rView', InMode), - (Rect_ptr, 'dataBounds', InMode), - (Point, 'cSize', InMode), - (short, 'theProc', InMode), - (WindowRef, 'theWindow', InMode), - (Boolean, 'drawIt', InMode), - (Boolean, 'hasGrow', InMode), - (Boolean, 'scrollHoriz', InMode), - (Boolean, 'scrollVert', InMode), -) -functions.append(f) - -f = Method(short, 'LAddColumn', - (short, 'count', InMode), - (short, 'colNum', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(short, 'LAddRow', - (short, 'count', InMode), - (short, 'rowNum', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LDelColumn', - (short, 'count', InMode), - (short, 'colNum', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LDelRow', - (short, 'count', InMode), - (short, 'rowNum', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(Boolean, 'LGetSelect', - (Boolean, 'next', InMode), - (Cell, 'theCell', InOutMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(Cell, 'LLastClick', - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(Boolean, 'LNextCell', - (Boolean, 'hNext', InMode), - (Boolean, 'vNext', InMode), - (Cell, 'theCell', InOutMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LSize', - (short, 'listWidth', InMode), - (short, 'listHeight', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LSetDrawingMode', - (Boolean, 'drawIt', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LScroll', - (short, 'dCols', InMode), - (short, 'dRows', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LAutoScroll', - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LUpdate', - (RgnHandle, 'theRgn', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LActivate', - (Boolean, 'act', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LCellSize', - (Point, 'cSize', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(Boolean, 'LClick', - (Point, 'pt', InMode), - (short, 'modifiers', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LAddToCell', - (InBufferShortsize, 'dataPtr', InMode), - (Cell, 'theCell', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LClrCell', - (Cell, 'theCell', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LGetCell', - (VarOutBufferShortsize, 'dataPtr', InOutMode), - (Cell, 'theCell', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LRect', - (Rect, 'cellRect', OutMode), - (Cell, 'theCell', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LSetCell', - (InBufferShortsize, 'dataPtr', InMode), - (Cell, 'theCell', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LSetSelect', - (Boolean, 'setIt', InMode), - (Cell, 'theCell', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - -f = Method(void, 'LDraw', - (Cell, 'theCell', InMode), - (ListRef, 'lHandle', InMode), -) -methods.append(f) - |