home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / cobol / library / cwindow / ufc024.c < prev    next >
C/C++ Source or Header  |  1993-07-28  |  500b  |  17 lines

  1. /* Turbo C/ Turbo C++
  2.   ufc024.c - generic example
  3. */
  4.  
  5. #include "_UFC02.H"  /* standard include file */
  6. #include "testfmt.H" /* include file for <testfmt> */
  7. main()
  8. { MOUSEON(); /* initialize mouse */
  9.   FKZ=2; /* function identifier */
  10.   SM=0; /* cursor position */
  11.   RET=112; /* shadow attribute */
  12.   memcpy(FMT,"testfmt ",8); /* format name */
  13.   #include "testfmt.i" /* format layout */
  14.   UNIF(&FKZ,FMT,testfmt.fld0,&RET,&SM,Daten); /* call UNIF */
  15.   MOUSEOFF(); /* hide mouse */
  16. }
  17.