File: undo.h

package info (click to toggle)
grpn 1.4.1-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, sid
  • size: 2,020 kB
  • sloc: ansic: 6,616; makefile: 74
file content (16 lines) | stat: -rw-r--r-- 191 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __UNDO_H
#define __UNDO_H


void initUndoSystem();

void UndoStack();

void CancelStackState();

void SaveStackState(int);
void AddStackState(int);

void UndoStackState(int);

#endif