home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Megahits 4
/
MegaHits_Vol.4.iso
/
mui
/
dev
/
gui
/
m2mui2_0.lha
/
txt
/
MuiSupport.def
< prev
next >
Wrap
Text File
|
1994-02-19
|
1KB
|
42 lines
DEFINITION MODULE MuiSupport;
(*
** MuiSupport 2.0
**
** done by Christian "Kochtopf" Scholz
**
** just the DoMethod-PROCEDURE because there was none shipped with M2Amiga
** (or i haven't found it ;-)
**
** Note that DoMethod returns nothing ( e.g. for setting up a Notify )
** and DOMethod does ( e.g. for the event-loop )
**
** Then there is the fail-PROCEDURE (orig. defined in demo.h)
** A init-PROCEDURE is not needed.
**
** $Log: MuiSupport.def,v $
# Revision 1.4 1994/02/09 14:50:03 Kochtopf
# Versionsnummer in 2.0 geaendert.
#
# Revision 1.3 1994/02/02 09:37:18 Kochtopf
# app bei fail in VAR-Parameter geaendert.
#
# Revision 1.2 1994/02/01 16:49:10 Kochtopf
# kleine Veraenderungen.
#
**
*)
IMPORT R;
FROM SYSTEM IMPORT ADDRESS;
FROM IntuitionD IMPORT IClassPtr;
TYPE APTR = ADDRESS;
PROCEDURE DoMethod(obj{R.A2} : APTR; msg{R.A1} : APTR);
PROCEDURE DOMethod(obj{R.A2} : APTR; msg{R.A1} : APTR) : LONGINT;
PROCEDURE fail(VAR app : APTR; str : ARRAY OF CHAR);
END MuiSupport.