mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 21:43:09 +00:00

- TSVN choked repeatedly when attempting to merge ~9000 revs into the branch (tried 3 times on 2 different computers) - If someone wants to delete aicom-network-fixes, they are welcome to - Lesson learned: Letting a branch get thousands of revs out of date is a horrible idea svn path=/branches/aicom-network-branch/; revision=44353
21 lines
627 B
C
21 lines
627 B
C
/*
|
|
* PROJECT: PAINT for ReactOS
|
|
* LICENSE: LGPL
|
|
* FILE: base/applications/paint/mouse.h
|
|
* PURPOSE: Things which should not be in the mouse event handler itself
|
|
* PROGRAMMERS: Benedikt Freisen
|
|
*/
|
|
|
|
void placeSelWin();
|
|
|
|
void startPaintingL(HDC hdc, short x, short y, int fg, int bg);
|
|
|
|
void whilePaintingL(HDC hdc, short x, short y, int fg, int bg);
|
|
|
|
void endPaintingL(HDC hdc, short x, short y, int fg, int bg);
|
|
|
|
void startPaintingR(HDC hdc, short x, short y, int fg, int bg);
|
|
|
|
void whilePaintingR(HDC hdc, short x, short y, int fg, int bg);
|
|
|
|
void endPaintingR(HDC hdc, short x, short y, int fg, int bg);
|