[USBEHCI_NEW]
[reactos.git] / base / applications / mspaint / 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(void);
10
11 void undo(void);
12
13 void redo(void);
14
15 void resetToU1(void);
16
17 void clearHistory(void);
18
19 void insertReversible(HBITMAP hbm);
20
21 void cropReversible(int width, int height, int xOffset, int yOffset);