2015-05-08 16:02:36 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: PAINT for ReactOS
|
|
|
|
* LICENSE: LGPL
|
2015-09-09 13:13:35 +00:00
|
|
|
* FILE: base/applications/mspaint/mouse.h
|
2015-05-08 16:02:36 +00:00
|
|
|
* PURPOSE: Things which should not be in the mouse event handler itself
|
|
|
|
* PROGRAMMERS: Benedikt Freisen
|
|
|
|
*/
|
|
|
|
|
2017-12-09 12:36:45 +00:00
|
|
|
#pragma once
|
|
|
|
|
2015-05-08 16:02:36 +00:00
|
|
|
void placeSelWin(void);
|
|
|
|
|
|
|
|
void startPaintingL(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);
|
|
|
|
|
|
|
|
void whilePaintingL(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);
|
|
|
|
|
|
|
|
void endPaintingL(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);
|
|
|
|
|
|
|
|
void startPaintingR(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);
|
|
|
|
|
|
|
|
void whilePaintingR(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);
|
|
|
|
|
|
|
|
void endPaintingR(HDC hdc, LONG x, LONG y, COLORREF fg, COLORREF bg);
|