home *** CD-ROM | disk | FTP | other *** search
- #ifndef __Structs_h
- #define __Structs_h
-
- #ifndef __Shell_h
- #include "Shell.Shell.h"
- #endif
-
-
-
- typedef struct {
- int pos;
- int size;
- int ref;
- }
- block_info;
-
-
- typedef struct {
-
- linklist_header header;
-
- char *filename;
-
- int max_mem, min_mem;
- int words_per_os;
- int address_step;
-
- int num_blocksalloced; /* How many block_info's have been allocated */
- int num_blocks; /* How many block_info's are being used */
- block_info *blocks;
-
- Shell_windblock *wind;
- Shell_rectblock *textrect;
- Shell_rectblock *heaprect;
- Shell_rectblock *addressesrect;
- Shell_rectblock *maxrect;
- Shell_rectblock *minrect;
- Shell_rectblock *plainrect;
-
- Shell_rectblock *numblocks, *total, *totalmem, *percentageused;
-
- struct {
- int total;
- }
- stats;
-
- }
- app_block;
-
-
- typedef struct {
- linklist_header anchor;
- }
- apps_anchorblock;
-
- #endif
-