home *** CD-ROM | disk | FTP | other *** search
-
- /* -- This program draws a frame then waits for a mouse button to be pressed */
- /* -- then disposes of it. */
-
- #include "teglsys.h"
-
-
- void main(void)
- {
-
- easytegl();
- easyout();
-
- pushimage(1,1,100,100);
- shadowbox(1,1,100,100);
- showmouse();
-
- while (mouse_buttons == 0) ;
- popimage();
-
- teglsupervisor();
- }
-
-
-