File: undo.h

package info (click to toggle)
grpn 1.0.4-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 404 kB
  • ctags: 461
  • sloc: ansic: 5,522; makefile: 66
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