home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-01-27 | 927 b | 21 lines | [TEXT/MPPS] |
- unit PPCTransSkelCallProcs;
- interface
- uses
- Types, QuickDraw, Events, Windows, Dialogs, Fonts, DiskInit, TextEdit, Traps,{}
- Memory, SegLoad, Scrap, ToolUtils, {}
- OSUtils, Menus, Resources, StandardFile, GestaltEqu,
- Files, Errors, Traps;
-
- procedure CallpMouse (thePoint: Point; theTime: longint; theMods: integer; myProc: ProcPtr);
- procedure CallpKey (theChar: char; theMods: integer; myProc: ProcPtr);
- procedure CallpEvent (theitem: integer; var theEvent: EventRecord; myProc: ProcPtr);
- function CallotherEvent (var theEvent: EventRecord; myProc: ProcPtr): Boolean;
- procedure CallpBoolean (myBool: Boolean; myProc: ProcPtr);
- procedure CallpInt (myInt: integer; myProc: ProcPtr);
- procedure CallpMenu (myMenu: MenuHandle; myProc: ProcPtr);
- procedure Callpnoarg (myProc: ProcPtr);
- procedure Callpfilter (theDialog: DialogPtr; var theEvent: EventRecord; var result: Boolean; myProc: ProcPtr);
-
- implementation
- end.
-