home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Madness / VRMAD96_ONE.ISO / virtek / libex / libex103.c < prev    next >
C/C++ Source or Header  |  1995-08-24  |  349b  |  13 lines

  1.                              // Example: 103 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. short  main(void)
  4. {
  5.   dddInitAll();
  6.   dddReadIff("EXAMPLE.LBM"); // Read in the IFF format file.
  7.   dddSetPal(ddduserpal);
  8.   dddScreenSwap();
  9.   while(!dddkeycode);        // Waits until a key is pressed .
  10.   dddRestoreAll();
  11.   return 0;
  12. }
  13.