home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #include "vogle.h"
-
- /*
- * the basic test program for a driver if we can draw a line and do
- * hardware text we are almost there!
- */
- main(argc, argv)
- int argc;
- char **argv;
- {
- vinit("os2pm");
-
- if (argc == 2)
- font(argv[1]); /* set font to argument */
- else
- font("large"); /* set font to hardware text large */
-
- color(BLACK); /* we want to clear in black */
- clear(); /* clear to current color */
-
- color(GREEN); /* set current color to green */
-
- move2(-1.0, 0.0); /* draw a horizontal line at y = 0 */
- draw2(1.0, 0.0);
-
- getkey(); /* pause for some input */
-
- move2(0.0, 0.0); /* draw a line along x = 0 */
- draw2(0.0, 1.0);
-
- move2(0.0, 0.0); /* move to the middle of the screen */
- drawstr("Hello"); /* draw "Hello" starting at the origin */
-
- getkey(); /* pause again */
-
- vexit(); /* set screen back to original state */
- }
-