4 #ifndef __ASM_INVENTORY_H
5 #define __ASM_INVENTORY_H
7 typedef struct inventory_s
{
8 struct inventory_s
*inv_next
;
16 extern int inventory_items
;
17 void add_to_inventory (int class, int type
, int controller
, int unit
, int state
);
18 int dump_inventory_to_user (void *userbuf
, int size
);
20 #endif /* __ASM_INVENTORY_H */