File: undo.h

package info (click to toggle)
grpn 1.1.2-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 444 kB
  • ctags: 462
  • sloc: ansic: 5,766; sh: 155; makefile: 81
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