home *** CD-ROM | disk | FTP | other *** search
- * ============================================================================ *
- * SetRect: setup an IBox structure
- *
- * struct IBox *NormalizeRect(struct IBox *b, WORD top, WORD left, WORD w, WORD h);
- *
- * ============================================================================ *
-
- include 'intuition/intuition.i'
-
- SECTION setrect.asm,CODE
-
- xdef _SetRect
- _SetRect
- move.l 4(sp),a0
- move.l 8(sp),(a0)
- move.l 12(sp),4(a0)
- move.l a0,d0
- rts
-
- end
-