| 25 |
struct editor_data_t |
struct editor_data_t |
| 26 |
{ |
{ |
| 27 |
char *p_display_lines[MAX_EDITOR_DATA_LINES]; |
char *p_display_lines[MAX_EDITOR_DATA_LINES]; |
| 28 |
long display_line_lengths[MAX_EDITOR_DATA_LINES]; |
long display_line_lengths[MAX_EDITOR_DATA_LINES]; // string length of display line |
| 29 |
|
int display_line_widths[MAX_EDITOR_DATA_LINES]; // display width of display line |
| 30 |
long display_line_total; |
long display_line_total; |
| 31 |
}; |
}; |
| 32 |
typedef struct editor_data_t EDITOR_DATA; |
typedef struct editor_data_t EDITOR_DATA; |
| 53 |
const char *str, int str_len, long *p_last_updated_line); |
const char *str, int str_len, long *p_last_updated_line); |
| 54 |
|
|
| 55 |
extern int editor_data_delete(EDITOR_DATA *p_editor_data, long *p_display_line, long *p_offset, |
extern int editor_data_delete(EDITOR_DATA *p_editor_data, long *p_display_line, long *p_offset, |
| 56 |
long *p_last_updated_line); |
long *p_last_updated_line, int del_line); |
| 57 |
|
|
| 58 |
#endif //_EDITOR_H_ |
#endif //_EDITOR_H_ |