00001 /* image.h - Info between installboot and boot. Author: Kees J. Bot 00002 */ 00003 00004 #define IM_NAME_MAX 63 00005 00006 struct image_header { 00007 char name[IM_NAME_MAX + 1]; /* Null terminated. */ 00008 struct exec process; 00009 }; 00010 00011 /* 00012 * $PchId: image.h,v 1.4 1995/11/27 22:23:12 philip Exp $ 00013 */
1.4.6