/[LeafOK_CVS]/lbbs/include/editor.h
ViewVC logotype

Diff of /lbbs/include/editor.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.3 by sysadm, Tue Jun 10 06:48:23 2025 UTC Revision 1.7 by sysadm, Wed Jul 2 04:17:33 2025 UTC
# Line 24  Line 24 
24    
25  struct editor_data_t  struct editor_data_t
26  {  {
         char *p_data_lines[MAX_EDITOR_DATA_LINES];  
         long data_line_total;  
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;
# Line 41  struct editor_ctx_t Line 40  struct editor_ctx_t
40  };  };
41  typedef struct editor_ctx_t EDITOR_CTX;  typedef struct editor_ctx_t EDITOR_CTX;
42    
43    extern int editor_memory_pool_init(void);
44    extern void editor_memory_pool_cleanup(void);
45    
46  extern EDITOR_DATA *editor_data_load(const char *p_data);  extern EDITOR_DATA *editor_data_load(const char *p_data);
47  extern long editor_data_save(const EDITOR_DATA *p_editor_data, char *p_data, size_t buf_len);  extern long editor_data_save(const EDITOR_DATA *p_editor_data, char *p_data, size_t buf_len);
48  extern void editor_data_cleanup(EDITOR_DATA *p_editor_data);  extern void editor_data_cleanup(EDITOR_DATA *p_editor_data);
# Line 50  extern int editor_display(EDITOR_DATA *p Line 52  extern int editor_display(EDITOR_DATA *p
52  extern int editor_data_insert(EDITOR_DATA *p_editor_data, long *p_display_line, long *p_offset,  extern int editor_data_insert(EDITOR_DATA *p_editor_data, long *p_display_line, long *p_offset,
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 display_line, long 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);
57    
58  #endif //_EDITOR_H_  #endif //_EDITOR_H_


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1