-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecdump.h
executable file
·72 lines (56 loc) · 1.11 KB
/
decdump.h
1
#ifndef __DECDUMP_H_#define __DECDUMP_H_#ifdef __DECDUMP_C_#define ASCII_START 41#define ASCII_END 50#define COLUMN1 cw * 10 + 4static long dumpdw_cline = -1; /*line start value for cursor*/static long dumpdw_cbyte = 0; /*offset within the line*/static long dumpdw_byte = 0 ;static short dumpdw_cshift = 0; /*1,10,100*/static long last_byte = -1;static putdnible( long n);static void draw_d_cursor( /*Draws the cursor*/ short v);static void draw_d_watches( /*Draws the watch point boxes*/ char *box, short v);#endif __DECDUMP_C_void dumpdw_goto( /*Shifts window origin so the address 'a' is visible*/ register address a);void dumpdw_click( /*Handle clicks in the window*/ Point *p, short modifiers);address get_c_pos_d( /* Return address of the cursor */ /* returns ERROR if cursor == nil */ void);void dumpdw_keypress( /*Handles keypresses*/ long key);void dumpdw_undo_keypress( /*handles Undo's*/ void);void update_decmem_window( /*Handles update events*/ void);void activate_decmem_window( /*Handles activate events*/ long is_active);#endif __DECDUMP_H_