[TRANSLATION][CLIPBRD] Italian translation implemented (#344)
[reactos.git] / base / applications / clipbrd / winutils.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Clipboard Viewer
4 * FILE: base/applications/clipbrd/winutils.h
5 * PURPOSE: Miscellaneous helper functions.
6 * PROGRAMMERS: Ricardo Hanke
7 */
8
9 void ShowLastWin32Error(HWND hwndParent);
10 void BringWindowToFront(HWND hWnd);
11 int DrawTextFromResource(HINSTANCE hInstance, UINT uID, HDC hDC, LPRECT lpRect, UINT uFormat);
12 int MessageBoxRes(HWND hWnd, HINSTANCE hInstance, UINT uText, UINT uCaption, UINT uType);
13 void DrawTextFromClipboard(HDC hDC, LPRECT lpRect, UINT uFormat);
14 void BitBltFromClipboard(HDC hdcDest, int nXDest, int nYDest, int nWidth, int nHeight, int nXSrc, int nYSrc, DWORD dwRop);
15 void SetDIBitsToDeviceFromClipboard(UINT uFormat, HDC hdc, int XDest, int YDest, int XSrc, int YSrc, UINT uStartScan, UINT fuColorUse);
16 void PlayMetaFileFromClipboard(HDC hdc, const RECT *lpRect);
17 void PlayEnhMetaFileFromClipboard(HDC hdc, const RECT *lpRect);
18 UINT RealizeClipboardPalette(HWND hWnd);