home *** CD-ROM | disk | FTP | other *** search
- //
- // quick and dirty poco to write an icon to the file icon.bin
- //
- //
- // if anyone tidies it up, please fax or send the changes to me
- //
-
- main() {
- int x;
- int y;
- FILE *handle;
-
- handle = fopen("icon.bin","w");
- for (y=0; y<32; y++) {
- for (x=0; x<32; x++) {
- fputc(GetDot(x,y), handle);
- }
- }
- fclose(handle);
- }
-
-