home *** CD-ROM | disk | FTP | other *** search
- // Example: 031 from Library Reference
- #include "..\3D-Ware\dddware.h"
- short count;
- short main(void)
- {
- dddInitAll();
- for (count=0; count<199; count++)
- {
- // Draw to the first screen.
- dddDrawStipLine(count, 0x5555, 0, count, 319, count);
- dddScreenSwap(); // Display this first screen.
- // Draw to the second screen.
- dddDrawStipLine(count, 0xaaaa, 0, count, 319, count);
- dddScreenSwap(); // Display this second screen.
- }
- dddRestoreAll();
- return 0;
- }
-