[FREELOADER]
[reactos.git] / base / applications / paint / history.h
1 /*
2 * PROJECT: PAINT for ReactOS
3 * LICENSE: LGPL
4 * FILE: history.h
5 * PURPOSE: Undo and redo functionality
6 * PROGRAMMERS: Benedikt Freisen
7 */
8
9 void newReversible();
10
11 void undo();
12
13 void redo();
14
15 void resetToU1();
16
17 void clearHistory();
18
19 void insertReversible();
20
21 void cropReversible(int width, int height, int xOffset, int yOffset);