home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / WINCLIP / EXAM103.C < prev    next >
Text File  |  1993-12-01  |  446b  |  14 lines

  1.   #include "window.h"
  2.   #define REVERSE CREATE_VIDEO_ATTRIBUTE(white,black)
  3.   main()
  4.   {
  5.     int i;
  6.     WindowInitializeSystem();
  7.     VideoWriteStringCCAttr("This",1,10,REVERSE);
  8.     VideoWriteStringCCAttr("is",2,10,REVERSE);
  9.     VideoWriteStringCCAttr("centered",3,10,REVERSE);
  10.     VideoWriteStringCCAttr("around",4,10,REVERSE);
  11.     VideoWriteStringCCAttr("column",5,10,REVERSE);
  12.     VideoWriteStringCCAttr("10",6,10,REVERSE);
  13.   }
  14.