Diff of /trunk/src/undo.h

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

revision 67 by harbaum, Mon Feb 9 13:23:17 2009 UTC revision 68 by harbaum, Tue Feb 10 12:29:09 2009 UTC
# Line 63  typedef struct undo_state_s { Line 63  typedef struct undo_state_s {
63    struct undo_state_s *next;    struct undo_state_s *next;
64  } undo_state_t;  } undo_state_t;
65    
66  void undo_remember_delete(appdata_t *appdata, type_t type, void *object);  typedef struct {
67  void undo_free(undo_state_t *state);    undo_state_t *state;
68    } undo_t;
69    
70  void undo(appdata_t *appdata);  struct appdata_s;
71    void undo_remember_delete(struct appdata_s *appdata, type_t type, void *obj);
72    void undo_free(undo_state_t *state);
73    void undo(struct appdata_s *appdata);
74    
75  #endif // UNDO_H  #endif // UNDO_H

Legend:
Removed from v.67  
changed lines
  Added in v.68