home *** CD-ROM | disk | FTP | other *** search
- ***************************************
- * *
- * misc.resource C-language interface *
- * by Timo Rossi 1988 *
- * *
- ***************************************
-
- xdef _GetMiscResource
- xdef _FreeMiscResource
-
- _GetMiscResource: ;(UnitNum,Name,MiscResource)
- move.l A6,-(sp)
- movem.l 8(sp),D0/A1/A6
- jsr -6(A6)
- move.l (sp)+,A6
- rts
-
- _FreeMiscResource: ;(UnitNum,MiscResource)
- move.l A6,-(sp)
- movem.l 8(sp),D0/A6
- jsr -12(A6)
- move.l (sp)+,A6
- rts
-
- END
-