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