00001 #include "objects.h" 00002 00003 void Library::load_pix() { 00004 int i; 00005 char *name[] = {"wingdows", "apple", "next", "sgi", "sun", "os2", 00006 "bsd", "linux", "redhat", "hurd"}; 00007 for (i=0; i <= NUM_OS; i++) { 00008 os[i].load(name[i]); 00009 if (i) cursor[i].load(name[i], cursor[i].OWN_MASK); 00010 } 00011 width = os[0].width; 00012 height = os[0].height; 00013 }
1.4.2