mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:45:53 +00:00
Implemented GetWindowDC()
svn path=/trunk/; revision=4235
This commit is contained in:
parent
8abf7a676f
commit
e67fee744a
3 changed files with 6 additions and 8 deletions
|
@ -814,7 +814,7 @@ NtUserGetUpdateRgn(
|
||||||
DWORD
|
DWORD
|
||||||
STDCALL
|
STDCALL
|
||||||
NtUserGetWindowDC(
|
NtUserGetWindowDC(
|
||||||
DWORD Unknown0);
|
HWND hWnd);
|
||||||
|
|
||||||
DWORD
|
DWORD
|
||||||
STDCALL
|
STDCALL
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: dc.c,v 1.9 2002/09/08 10:23:12 chorns Exp $
|
/* $Id: dc.c,v 1.10 2003/03/04 00:40:37 rcampbell Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS user32.dll
|
* PROJECT: ReactOS user32.dll
|
||||||
* FILE: lib/user32/windows/input.c
|
* FILE: lib/user32/windows/input.c
|
||||||
|
@ -56,7 +56,7 @@ STDCALL
|
||||||
GetWindowDC(
|
GetWindowDC(
|
||||||
HWND hWnd)
|
HWND hWnd)
|
||||||
{
|
{
|
||||||
return (HDC)0;
|
return (HDC)NtUserGetWindowDC(hWnd);
|
||||||
}
|
}
|
||||||
int
|
int
|
||||||
STDCALL
|
STDCALL
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: window.c,v 1.22 2003/03/03 18:57:26 rcampbell Exp $
|
/* $Id: window.c,v 1.23 2003/03/04 00:39:56 rcampbell Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -734,11 +734,9 @@ NtUserGetOpenClipboardWindow(VOID)
|
||||||
}
|
}
|
||||||
|
|
||||||
DWORD STDCALL
|
DWORD STDCALL
|
||||||
NtUserGetWindowDC(DWORD Unknown0)
|
NtUserGetWindowDC(HWND hWnd)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED
|
return NtUserGetDCEx( hWnd, 0, DCX_USESTYLE | DCX_WINDOW );
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
DWORD STDCALL
|
DWORD STDCALL
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue