mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
- Fix formatting. No code change
svn path=/trunk/; revision=36348
This commit is contained in:
parent
de2b706b27
commit
47b0133272
5 changed files with 604 additions and 497 deletions
|
@ -33,7 +33,9 @@
|
|||
#include <wine/debug.h>
|
||||
/* FUNCTIONS *****************************************************************/
|
||||
|
||||
void DrawCaret(HWND hWnd, PTHRDCARETINFO CaretInfo)
|
||||
void
|
||||
DrawCaret(HWND hWnd,
|
||||
PTHRDCARETINFO CaretInfo)
|
||||
{
|
||||
HDC hDC, hComp;
|
||||
|
||||
|
@ -46,15 +48,33 @@ void DrawCaret(HWND hWnd, PTHRDCARETINFO CaretInfo)
|
|||
if(hComp)
|
||||
{
|
||||
SelectObject(hComp, CaretInfo->Bitmap);
|
||||
BitBlt(hDC, CaretInfo->Pos.x, CaretInfo->Pos.y, CaretInfo->Size.cx, CaretInfo->Size.cy, hComp, 0, 0, SRCINVERT);
|
||||
BitBlt(hDC,
|
||||
CaretInfo->Pos.x,
|
||||
CaretInfo->Pos.y,
|
||||
CaretInfo->Size.cx,
|
||||
CaretInfo->Size.cy,
|
||||
hComp,
|
||||
0,
|
||||
0,
|
||||
SRCINVERT);
|
||||
DeleteDC(hComp);
|
||||
}
|
||||
else
|
||||
PatBlt(hDC, CaretInfo->Pos.x, CaretInfo->Pos.y, CaretInfo->Size.cx, CaretInfo->Size.cy, DSTINVERT);
|
||||
PatBlt(hDC,
|
||||
CaretInfo->Pos.x,
|
||||
CaretInfo->Pos.y,
|
||||
CaretInfo->Size.cx,
|
||||
CaretInfo->Size.cy,
|
||||
DSTINVERT);
|
||||
}
|
||||
else
|
||||
{
|
||||
PatBlt(hDC, CaretInfo->Pos.x, CaretInfo->Pos.y, CaretInfo->Size.cx, CaretInfo->Size.cy, DSTINVERT);
|
||||
PatBlt(hDC,
|
||||
CaretInfo->Pos.x,
|
||||
CaretInfo->Pos.y,
|
||||
CaretInfo->Size.cx,
|
||||
CaretInfo->Size.cy,
|
||||
DSTINVERT);
|
||||
}
|
||||
ReleaseDC(hWnd, hDC);
|
||||
}
|
||||
|
@ -63,7 +83,8 @@ void DrawCaret(HWND hWnd, PTHRDCARETINFO CaretInfo)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
CreateCaret(HWND hWnd,
|
||||
HBITMAP hBitmap,
|
||||
int nWidth,
|
||||
|
@ -76,7 +97,8 @@ CreateCaret(HWND hWnd,
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
DestroyCaret(VOID)
|
||||
{
|
||||
return (BOOL)NtUserCallNoParam(NOPARAM_ROUTINE_DESTROY_CARET);
|
||||
|
@ -86,7 +108,8 @@ DestroyCaret(VOID)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
UINT STDCALL
|
||||
UINT
|
||||
STDCALL
|
||||
GetCaretBlinkTime(VOID)
|
||||
{
|
||||
return NtUserGetCaretBlinkTime();
|
||||
|
@ -96,7 +119,8 @@ GetCaretBlinkTime(VOID)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
GetCaretPos(LPPOINT lpPoint)
|
||||
{
|
||||
return (BOOL)NtUserGetCaretPos(lpPoint);
|
||||
|
@ -106,7 +130,8 @@ GetCaretPos(LPPOINT lpPoint)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
SetCaretBlinkTime(UINT uMSeconds)
|
||||
{
|
||||
return NtUserSetCaretBlinkTime(uMSeconds);
|
||||
|
@ -116,12 +141,12 @@ SetCaretBlinkTime(UINT uMSeconds)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
SetCaretPos(int X,
|
||||
int Y)
|
||||
{
|
||||
return NtUserSetCaretPos(X, Y);
|
||||
}
|
||||
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -26,7 +26,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(user32);
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
OpenClipboard(HWND hWndNewOwner)
|
||||
{
|
||||
BOOL ret = NtUserOpenClipboard(hWndNewOwner, 0);
|
||||
|
@ -36,7 +37,8 @@ OpenClipboard(HWND hWndNewOwner)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
CloseClipboard(VOID)
|
||||
{
|
||||
BOOL ret;
|
||||
|
@ -47,7 +49,8 @@ CloseClipboard(VOID)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
INT STDCALL
|
||||
INT
|
||||
STDCALL
|
||||
CountClipboardFormats(VOID)
|
||||
{
|
||||
INT ret = NtUserCountClipboardFormats();
|
||||
|
@ -57,7 +60,8 @@ CountClipboardFormats(VOID)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
EmptyClipboard(VOID)
|
||||
{
|
||||
return NtUserEmptyClipboard();
|
||||
|
@ -66,7 +70,8 @@ EmptyClipboard(VOID)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
UINT STDCALL
|
||||
UINT
|
||||
STDCALL
|
||||
EnumClipboardFormats(UINT format)
|
||||
{
|
||||
UINT ret = NtUserCallOneParam(format, ONEPARAM_ROUTINE_ENUMCLIPBOARDFORMATS);
|
||||
|
@ -76,7 +81,8 @@ EnumClipboardFormats(UINT format)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HANDLE STDCALL
|
||||
HANDLE
|
||||
STDCALL
|
||||
GetClipboardData(UINT uFormat)
|
||||
{
|
||||
HGLOBAL hGlobal = NULL;
|
||||
|
@ -109,8 +115,11 @@ GetClipboardData(UINT uFormat)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
INT STDCALL
|
||||
GetClipboardFormatNameA(UINT format, LPSTR lpszFormatName, int cchMaxCount)
|
||||
INT
|
||||
STDCALL
|
||||
GetClipboardFormatNameA(UINT format,
|
||||
LPSTR lpszFormatName,
|
||||
int cchMaxCount)
|
||||
{
|
||||
LPWSTR lpBuffer;
|
||||
UNICODE_STRING FormatName;
|
||||
|
@ -147,8 +156,11 @@ GetClipboardFormatNameA(UINT format, LPSTR lpszFormatName, int cchMaxCount)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
INT STDCALL
|
||||
GetClipboardFormatNameW(UINT format, LPWSTR lpszFormatName, INT cchMaxCount)
|
||||
INT
|
||||
STDCALL
|
||||
GetClipboardFormatNameW(UINT format,
|
||||
LPWSTR lpszFormatName,
|
||||
INT cchMaxCount)
|
||||
{
|
||||
UNICODE_STRING FormatName;
|
||||
ULONG Ret;
|
||||
|
@ -164,7 +176,8 @@ GetClipboardFormatNameW(UINT format, LPWSTR lpszFormatName, INT cchMaxCount)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HWND STDCALL
|
||||
HWND
|
||||
STDCALL
|
||||
GetClipboardOwner(VOID)
|
||||
{
|
||||
return NtUserGetClipboardOwner();
|
||||
|
@ -173,7 +186,8 @@ GetClipboardOwner(VOID)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
DWORD STDCALL
|
||||
DWORD
|
||||
STDCALL
|
||||
GetClipboardSequenceNumber(VOID)
|
||||
{
|
||||
return NtUserGetClipboardSequenceNumber();
|
||||
|
@ -182,7 +196,8 @@ GetClipboardSequenceNumber(VOID)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HWND STDCALL
|
||||
HWND
|
||||
STDCALL
|
||||
GetClipboardViewer(VOID)
|
||||
{
|
||||
return NtUserGetClipboardViewer();
|
||||
|
@ -191,7 +206,8 @@ GetClipboardViewer(VOID)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HWND STDCALL
|
||||
HWND
|
||||
STDCALL
|
||||
GetOpenClipboardWindow(VOID)
|
||||
{
|
||||
return NtUserGetOpenClipboardWindow();
|
||||
|
@ -200,7 +216,8 @@ GetOpenClipboardWindow(VOID)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
INT STDCALL
|
||||
INT
|
||||
STDCALL
|
||||
GetPriorityClipboardFormat(UINT *paFormatPriorityList, INT cFormats)
|
||||
{
|
||||
INT ret = NtUserGetPriorityClipboardFormat(paFormatPriorityList, cFormats);
|
||||
|
@ -210,7 +227,8 @@ GetPriorityClipboardFormat(UINT *paFormatPriorityList, INT cFormats)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
IsClipboardFormatAvailable(UINT format)
|
||||
{
|
||||
BOOL ret = NtUserIsClipboardFormatAvailable(format);
|
||||
|
@ -221,7 +239,8 @@ IsClipboardFormatAvailable(UINT format)
|
|||
* @implemented
|
||||
*/
|
||||
|
||||
UINT STDCALL
|
||||
UINT
|
||||
STDCALL
|
||||
RegisterClipboardFormatA(LPCSTR lpszFormat)
|
||||
{
|
||||
UINT ret = 0;
|
||||
|
@ -253,7 +272,8 @@ RegisterClipboardFormatA(LPCSTR lpszFormat)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
UINT STDCALL
|
||||
UINT
|
||||
STDCALL
|
||||
RegisterClipboardFormatW(LPCWSTR lpszFormat)
|
||||
{
|
||||
UINT ret = 0;
|
||||
|
@ -278,7 +298,8 @@ RegisterClipboardFormatW(LPCWSTR lpszFormat)
|
|||
return ret;
|
||||
}
|
||||
|
||||
HGLOBAL renderLocale (DWORD Locale)
|
||||
HGLOBAL
|
||||
renderLocale(DWORD Locale)
|
||||
{
|
||||
DWORD* pLocale;
|
||||
HGLOBAL hGlobal;
|
||||
|
@ -302,7 +323,8 @@ HGLOBAL renderLocale (DWORD Locale)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HANDLE STDCALL
|
||||
HANDLE
|
||||
STDCALL
|
||||
SetClipboardData(UINT uFormat, HANDLE hMem)
|
||||
{
|
||||
DWORD size;
|
||||
|
@ -358,7 +380,8 @@ SetClipboardData(UINT uFormat, HANDLE hMem)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HWND STDCALL
|
||||
HWND
|
||||
STDCALL
|
||||
SetClipboardViewer(HWND hWndNewViewer)
|
||||
{
|
||||
return NtUserSetClipboardViewer(hWndNewViewer);
|
||||
|
@ -367,8 +390,10 @@ SetClipboardViewer(HWND hWndNewViewer)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
ChangeClipboardChain(HWND hWndRemove, HWND hWndNewNext)
|
||||
BOOL
|
||||
STDCALL
|
||||
ChangeClipboardChain(HWND hWndRemove,
|
||||
HWND hWndNewNext)
|
||||
{
|
||||
return NtUserChangeClipboardChain(hWndRemove, hWndNewNext);
|
||||
}
|
||||
|
@ -376,7 +401,8 @@ ChangeClipboardChain(HWND hWndRemove, HWND hWndNewNext)
|
|||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
AddClipboardFormatListener(HWND hwnd)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
|
@ -385,7 +411,8 @@ AddClipboardFormatListener(HWND hwnd)
|
|||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
RemoveClipboardFormatListener(HWND hwnd)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
|
@ -395,9 +422,9 @@ RemoveClipboardFormatListener(HWND hwnd)
|
|||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
GetUpdatedClipboardFormats(
|
||||
PUINT lpuiFormats,
|
||||
BOOL
|
||||
STDCALL
|
||||
GetUpdatedClipboardFormats(PUINT lpuiFormats,
|
||||
UINT cFormats,
|
||||
PUINT pcFormatsOut)
|
||||
{
|
||||
|
|
|
@ -42,8 +42,10 @@ CopyBitmap(HBITMAP bmp);
|
|||
/* INTERNAL ******************************************************************/
|
||||
|
||||
/* This callback routine is called directly after switching to gui mode */
|
||||
NTSTATUS STDCALL
|
||||
User32SetupDefaultCursors(PVOID Arguments, ULONG ArgumentLength)
|
||||
NTSTATUS
|
||||
STDCALL
|
||||
User32SetupDefaultCursors(PVOID Arguments,
|
||||
ULONG ArgumentLength)
|
||||
{
|
||||
BOOL *DefaultCursor = (BOOL*)Arguments;
|
||||
LRESULT Result = TRUE;
|
||||
|
@ -69,7 +71,8 @@ User32SetupDefaultCursors(PVOID Arguments, ULONG ArgumentLength)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HCURSOR STDCALL
|
||||
HCURSOR
|
||||
STDCALL
|
||||
CopyCursor(HCURSOR pcur)
|
||||
{
|
||||
ICONINFO IconInfo;
|
||||
|
@ -84,7 +87,8 @@ CopyCursor(HCURSOR pcur)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HCURSOR STDCALL
|
||||
HCURSOR
|
||||
STDCALL
|
||||
CreateCursor(HINSTANCE hInst,
|
||||
int xHotSpot,
|
||||
int yHotSpot,
|
||||
|
@ -152,7 +156,8 @@ CreateCursor(HINSTANCE hInst,
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
DestroyCursor(HCURSOR hCursor)
|
||||
{
|
||||
return (BOOL)NtUserDestroyCursor((HANDLE)hCursor, 0);
|
||||
|
@ -162,7 +167,8 @@ DestroyCursor(HCURSOR hCursor)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
GetClipCursor(LPRECT lpRect)
|
||||
{
|
||||
return NtUserGetClipCursor(lpRect);
|
||||
|
@ -172,7 +178,8 @@ GetClipCursor(LPRECT lpRect)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HCURSOR STDCALL
|
||||
HCURSOR
|
||||
STDCALL
|
||||
GetCursor(VOID)
|
||||
{
|
||||
CURSORINFO ci;
|
||||
|
@ -187,7 +194,8 @@ GetCursor(VOID)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
GetCursorInfo(PCURSORINFO pci)
|
||||
{
|
||||
return (BOOL)NtUserGetCursorInfo(pci);
|
||||
|
@ -197,7 +205,8 @@ GetCursorInfo(PCURSORINFO pci)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
GetCursorPos(LPPOINT lpPoint)
|
||||
{
|
||||
BOOL res;
|
||||
|
@ -217,11 +226,16 @@ GetCursorPos(LPPOINT lpPoint)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HCURSOR STDCALL
|
||||
HCURSOR
|
||||
STDCALL
|
||||
LoadCursorA(HINSTANCE hInstance,
|
||||
LPCSTR lpCursorName)
|
||||
{
|
||||
return(LoadImageA(hInstance, lpCursorName, IMAGE_CURSOR, 0, 0,
|
||||
return(LoadImageA(hInstance,
|
||||
lpCursorName,
|
||||
IMAGE_CURSOR,
|
||||
0,
|
||||
0,
|
||||
LR_SHARED | LR_DEFAULTSIZE));
|
||||
}
|
||||
|
||||
|
@ -229,13 +243,18 @@ LoadCursorA(HINSTANCE hInstance,
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HCURSOR STDCALL
|
||||
HCURSOR
|
||||
STDCALL
|
||||
LoadCursorFromFileA(LPCSTR lpFileName)
|
||||
{
|
||||
UNICODE_STRING FileName;
|
||||
HCURSOR Result;
|
||||
RtlCreateUnicodeStringFromAsciiz(&FileName, (LPSTR)lpFileName);
|
||||
Result = LoadImageW(0, FileName.Buffer, IMAGE_CURSOR, 0, 0,
|
||||
Result = LoadImageW(0,
|
||||
FileName.Buffer,
|
||||
IMAGE_CURSOR,
|
||||
0,
|
||||
0,
|
||||
LR_LOADFROMFILE | LR_DEFAULTSIZE);
|
||||
RtlFreeUnicodeString(&FileName);
|
||||
return(Result);
|
||||
|
@ -245,10 +264,15 @@ LoadCursorFromFileA(LPCSTR lpFileName)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HCURSOR STDCALL
|
||||
HCURSOR
|
||||
STDCALL
|
||||
LoadCursorFromFileW(LPCWSTR lpFileName)
|
||||
{
|
||||
return(LoadImageW(0, lpFileName, IMAGE_CURSOR, 0, 0,
|
||||
return(LoadImageW(0,
|
||||
lpFileName,
|
||||
IMAGE_CURSOR,
|
||||
0,
|
||||
0,
|
||||
LR_LOADFROMFILE | LR_DEFAULTSIZE));
|
||||
}
|
||||
|
||||
|
@ -256,11 +280,16 @@ LoadCursorFromFileW(LPCWSTR lpFileName)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HCURSOR STDCALL
|
||||
HCURSOR
|
||||
STDCALL
|
||||
LoadCursorW(HINSTANCE hInstance,
|
||||
LPCWSTR lpCursorName)
|
||||
{
|
||||
return(LoadImageW(hInstance, lpCursorName, IMAGE_CURSOR, 0, 0,
|
||||
return(LoadImageW(hInstance,
|
||||
lpCursorName,
|
||||
IMAGE_CURSOR,
|
||||
0,
|
||||
0,
|
||||
LR_SHARED | LR_DEFAULTSIZE));
|
||||
}
|
||||
|
||||
|
@ -270,8 +299,7 @@ LoadCursorW(HINSTANCE hInstance,
|
|||
*/
|
||||
BOOL
|
||||
STDCALL
|
||||
ClipCursor(
|
||||
CONST RECT *lpRect)
|
||||
ClipCursor(CONST RECT *lpRect)
|
||||
{
|
||||
return NtUserClipCursor((RECT *)lpRect);
|
||||
}
|
||||
|
@ -280,7 +308,8 @@ ClipCursor(
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
HCURSOR STDCALL
|
||||
HCURSOR
|
||||
STDCALL
|
||||
SetCursor(HCURSOR hCursor)
|
||||
{
|
||||
return NtUserSetCursor(hCursor);
|
||||
|
@ -290,7 +319,8 @@ SetCursor(HCURSOR hCursor)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
SetCursorPos(int X,
|
||||
int Y)
|
||||
{
|
||||
|
@ -312,7 +342,8 @@ SetCursorPos(int X,
|
|||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
SetSystemCursor(HCURSOR hcur,
|
||||
DWORD id)
|
||||
{
|
||||
|
@ -324,14 +355,16 @@ SetSystemCursor(HCURSOR hcur,
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
int STDCALL
|
||||
int
|
||||
STDCALL
|
||||
ShowCursor(BOOL bShow)
|
||||
{
|
||||
return NtUserShowCursor(bShow);
|
||||
}
|
||||
|
||||
HCURSOR
|
||||
CursorIconToCursor(HICON hIcon, BOOL SemiTransparent)
|
||||
CursorIconToCursor(HICON hIcon,
|
||||
BOOL SemiTransparent)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
|
|
|
@ -39,8 +39,7 @@
|
|||
*/
|
||||
HDC
|
||||
STDCALL
|
||||
GetDC(
|
||||
HWND hWnd)
|
||||
GetDC(HWND hWnd)
|
||||
{
|
||||
return NtUserGetDC(hWnd);
|
||||
}
|
||||
|
@ -51,8 +50,7 @@ GetDC(
|
|||
*/
|
||||
HDC
|
||||
STDCALL
|
||||
GetDCEx(
|
||||
HWND hWnd,
|
||||
GetDCEx(HWND hWnd,
|
||||
HRGN hrgnClip,
|
||||
DWORD flags)
|
||||
{
|
||||
|
@ -65,22 +63,22 @@ GetDCEx(
|
|||
*/
|
||||
HDC
|
||||
STDCALL
|
||||
GetWindowDC(
|
||||
HWND hWnd)
|
||||
GetWindowDC(HWND hWnd)
|
||||
{
|
||||
return (HDC)NtUserGetWindowDC(hWnd);
|
||||
}
|
||||
|
||||
|
||||
BOOL STDCALL GdiReleaseDC(HDC hdc);
|
||||
BOOL
|
||||
STDCALL
|
||||
GdiReleaseDC(HDC hdc);
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
int
|
||||
STDCALL
|
||||
ReleaseDC(
|
||||
HWND hWnd,
|
||||
ReleaseDC(HWND hWnd,
|
||||
HDC hDC)
|
||||
{
|
||||
// From msdn: if the DC was not released return zero.
|
||||
|
@ -90,7 +88,7 @@ ReleaseDC(
|
|||
|
||||
GdiReleaseDC ( hDC ); // Release locals.
|
||||
// Win 3.1 throw back, hWnd is ignored and not used.
|
||||
return NtUserCallOneParam( (DWORD) hDC, ONEPARAM_ROUTINE_RELEASEDC);
|
||||
return NtUserCallOneParam((DWORD) hDC, ONEPARAM_ROUTINE_RELEASEDC);
|
||||
}
|
||||
|
||||
|
||||
|
@ -99,8 +97,7 @@ ReleaseDC(
|
|||
*/
|
||||
HWND
|
||||
STDCALL
|
||||
WindowFromDC(
|
||||
HDC hDC)
|
||||
WindowFromDC(HDC hDC)
|
||||
{
|
||||
return NtUserWindowFromDC(hDC);
|
||||
}
|
||||
|
|
|
@ -37,8 +37,10 @@
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
CopyRect(LPRECT lprcDst, CONST RECT *lprcSrc)
|
||||
BOOL
|
||||
STDCALL
|
||||
CopyRect(LPRECT lprcDst,
|
||||
CONST RECT *lprcSrc)
|
||||
{
|
||||
if(lprcDst == NULL || lprcSrc == NULL)
|
||||
return(FALSE);
|
||||
|
@ -51,9 +53,9 @@ CopyRect(LPRECT lprcDst, CONST RECT *lprcSrc)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
EqualRect(
|
||||
CONST RECT *lprc1,
|
||||
BOOL
|
||||
STDCALL
|
||||
EqualRect(CONST RECT *lprc1,
|
||||
CONST RECT *lprc2)
|
||||
{
|
||||
if (lprc1 == NULL || lprc2 == NULL)
|
||||
|
@ -67,8 +69,11 @@ EqualRect(
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
InflateRect(LPRECT rect, int dx, int dy)
|
||||
BOOL
|
||||
STDCALL
|
||||
InflateRect(LPRECT rect,
|
||||
int dx,
|
||||
int dy)
|
||||
{
|
||||
rect->left -= dx;
|
||||
rect->top -= dy;
|
||||
|
@ -81,7 +86,8 @@ InflateRect(LPRECT rect, int dx, int dy)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
IntersectRect(LPRECT lprcDst,
|
||||
CONST RECT *lprcSrc1,
|
||||
CONST RECT *lprcSrc2)
|
||||
|
@ -106,7 +112,8 @@ IntersectRect(LPRECT lprcDst,
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
IsRectEmpty(CONST RECT *lprc)
|
||||
{
|
||||
return((lprc->left >= lprc->right) || (lprc->top >= lprc->bottom));
|
||||
|
@ -116,8 +123,11 @@ IsRectEmpty(CONST RECT *lprc)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
OffsetRect(LPRECT rect, int dx, int dy)
|
||||
BOOL
|
||||
STDCALL
|
||||
OffsetRect(LPRECT rect,
|
||||
int dx,
|
||||
int dy)
|
||||
{
|
||||
if(rect == NULL)
|
||||
return(FALSE);
|
||||
|
@ -133,15 +143,22 @@ OffsetRect(LPRECT rect, int dx, int dy)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
PtInRect(CONST RECT *lprc, POINT pt)
|
||||
BOOL
|
||||
STDCALL
|
||||
PtInRect(CONST RECT *lprc,
|
||||
POINT pt)
|
||||
{
|
||||
return((pt.x >= lprc->left) && (pt.x < lprc->right) &&
|
||||
(pt.y >= lprc->top) && (pt.y < lprc->bottom));
|
||||
}
|
||||
|
||||
BOOL STDCALL
|
||||
SetRect(LPRECT lprc, int xLeft, int yTop, int xRight, int yBottom)
|
||||
BOOL
|
||||
STDCALL
|
||||
SetRect(LPRECT lprc,
|
||||
int xLeft,
|
||||
int yTop,
|
||||
int xRight,
|
||||
int yBottom)
|
||||
{
|
||||
lprc->left = xLeft;
|
||||
lprc->top = yTop;
|
||||
|
@ -154,7 +171,8 @@ SetRect(LPRECT lprc, int xLeft, int yTop, int xRight, int yBottom)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
BOOL
|
||||
STDCALL
|
||||
SetRectEmpty(LPRECT lprc)
|
||||
{
|
||||
lprc->left = lprc->right = lprc->top = lprc->bottom = 0;
|
||||
|
@ -165,8 +183,11 @@ SetRectEmpty(LPRECT lprc)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
SubtractRect(LPRECT lprcDst, CONST RECT *lprcSrc1, CONST RECT *lprcSrc2)
|
||||
BOOL
|
||||
STDCALL
|
||||
SubtractRect(LPRECT lprcDst,
|
||||
CONST RECT *lprcSrc1,
|
||||
CONST RECT *lprcSrc2)
|
||||
{
|
||||
RECT tempRect;
|
||||
|
||||
|
@ -205,8 +226,11 @@ SubtractRect(LPRECT lprcDst, CONST RECT *lprcSrc1, CONST RECT *lprcSrc2)
|
|||
/*
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
UnionRect(LPRECT lprcDst, CONST RECT *lprcSrc1, CONST RECT *lprcSrc2)
|
||||
BOOL
|
||||
STDCALL
|
||||
UnionRect(LPRECT lprcDst,
|
||||
CONST RECT *lprcSrc1,
|
||||
CONST RECT *lprcSrc2)
|
||||
{
|
||||
if (IsRectEmpty(lprcSrc1))
|
||||
{
|
||||
|
@ -234,5 +258,6 @@ UnionRect(LPRECT lprcDst, CONST RECT *lprcSrc1, CONST RECT *lprcSrc2)
|
|||
lprcDst->bottom = max(lprcSrc1->bottom, lprcSrc2->bottom);
|
||||
}
|
||||
}
|
||||
|
||||
return(TRUE);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue