home *** CD-ROM | disk | FTP | other *** search
-
- /* -- simplest program using high level windows */
-
- #include "teglsys.h"
-
- winframeptr wf;
-
- void main(void)
- {
-
- tweasystart(); /* -- simple startup */
-
- twinit(&wf,100,100,400,250); /* -- creates & initializes */
- twsetheader(wf,"Hello World"); /* -- set up individual items */
- twdrawwindowframe(wf); /* -- draw it the first time */
-
- teglsupervisor();
- }
-
-
-