source:
trunk/minix/boot/image.h@
10
| Last change on this file since 10 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 263 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 1 | /* image.h - Info between installboot and boot. Author: Kees J. Bot |
| 2 | */ | |
| 3 | ||
| 4 | #define IM_NAME_MAX 63 | |
| 5 | ||
| 6 | struct image_header { | |
| 7 | char name[IM_NAME_MAX + 1]; /* Null terminated. */ | |
| 8 | struct exec process; | |
| 9 | }; | |
| 10 | ||
| 11 | /* | |
| 12 | * $PchId: image.h,v 1.4 1995/11/27 22:23:12 philip Exp $ | |
| 13 | */ |
Note:
See TracBrowser
for help on using the repository browser.