Synchronize with trunk revision 59781.
[reactos.git] / base / applications / mspaint / mouse.h
1 /*
2 * PROJECT: PAINT for ReactOS
3 * LICENSE: LGPL
4 * FILE: base/applications/paint/mouse.h
5 * PURPOSE: Things which should not be in the mouse event handler itself
6 * PROGRAMMERS: Benedikt Freisen
7 */
8
9 void placeSelWin(void);
10
11 void startPaintingL(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);
12
13 void whilePaintingL(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);
14
15 void endPaintingL(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);
16
17 void startPaintingR(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);
18
19 void whilePaintingR(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);
20
21 void endPaintingR(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);