From: Wolfgang T. <wth...@us...> - 2005-10-05 03:14:47
|
Update of /cvsroot/hoc/hoc/Bindings In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8803/Bindings Modified Files: binding-script.txt Log Message: Recognize the pointer typedefs for the usual struct types (NSRangePointer, etc.). This lets ifgen handle the methods of NSAttributedString, for instance. Patch contributed by Matthew Morgan <mat...@gm...> Index: binding-script.txt =================================================================== RCS file: /cvsroot/hoc/hoc/Bindings/binding-script.txt,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- binding-script.txt 30 Sep 2005 06:09:18 -0000 1.9 +++ binding-script.txt 5 Oct 2005 03:14:39 -0000 1.10 @@ -62,6 +62,11 @@ type NSRect Foundation.NSGeometry; type NSRange Foundation.NSRange; +type NSPointPointer Foundation.NSGeometry; +type NSSizePointer Foundation.NSGeometry; +type NSRectPointer Foundation.NSGeometry; +type NSRangePointer Foundation.NSRange; + -- GNUstep specifics: rename rawMimeData: rawMimeData_; rename setContent:type: setContentAndType; |