home *** CD-ROM | disk | FTP | other *** search
- {$F+} { -- far code model is required for any functions that }
- { -- are to be used as Event Handlers }
-
- Uses
- dos,
- graph,
-
- virtmem,
- fastgrph,
- TEGLIntr,
- TEGLICON,
- TEGLGRPH,
- TEGLUnit,
- TEGLMenu,
- SenseMs,
- DebugUnt,
- TEGLEasy;
-
- { -- insert variables here }
-
-
- { -- insert procedures and functions here }
-
-
-
- BEGIN
-
- EasyTEGL;
-
- { -- insert the example code here }
- { -- press Ctrl-Break to exit program }
- PushImage(1,1,100,100);
- ShadowBox(1,1,100,100);
-
- WHILE Mouse_Buttons = 0 DO;
- PopImage;
-
-
- { -- control is then passed to the supervisor }
-
- TEGLSupervisor;
- END.