home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / memory / heapdbg / _heap.h next >
Encoding:
Text File  |  1994-06-12  |  1.0 KB  |  26 lines

  1. /*********************************_HEAP.H****************************************/
  2.  
  3. /* Prototypes from SCREEN.C  */
  4.  
  5. void draw_boxes_and_titles(char *labels[],int row_count);
  6. void screenputc(int row,int col,char c);
  7. void screenputf(int row,int col,char *format,...);
  8. void screenputs(int row,int col,char *string);
  9. void screenclearline(int row);
  10. void initialize_screen(char *labels[],int widths[]);
  11. void setup_screen(char *labels[],int widths[],int rows);
  12. void restore_screen(void);
  13.  
  14. /* Prototypes from HEAP.C */
  15.  
  16. void screen_message(int immediate_return, int tag, char *format,...);
  17. void hide_screen(void);
  18. void my_free(char *file_name,unsigned int line_number, void *block);
  19. void *my_malloc(char *file_name,unsigned int line_number,size_t size);
  20. void initialize_tags(void);
  21. void display_tag_table(int last_tag);
  22. void add_tag_to_table(char far *pointer,char maverick,size_t size,char *file_name,unsigned int line_number);
  23. void delete_tag_from_table(int tag);
  24. void verify_heap(void);
  25. void heap_walk(void);
  26.