mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 01:25:41 +00:00
-misc
svn path=/trunk/; revision=5410
This commit is contained in:
parent
878bd7b8e1
commit
a24079b8cc
3 changed files with 25 additions and 26 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: stubs.c,v 1.28 2003/08/02 16:56:13 gdalsnes Exp $
|
/* $Id: stubs.c,v 1.29 2003/08/04 16:56:49 gdalsnes Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS user32.dll
|
* PROJECT: ReactOS user32.dll
|
||||||
|
@ -135,18 +135,6 @@ CopyImage(
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
WINBOOL
|
|
||||||
STDCALL
|
|
||||||
DragDetect(
|
|
||||||
HWND hwnd,
|
|
||||||
POINT pt)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -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: input.c,v 1.10 2003/08/02 16:55:59 gdalsnes Exp $
|
/* $Id: input.c,v 1.11 2003/08/04 16:56:40 gdalsnes Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS user32.dll
|
* PROJECT: ReactOS user32.dll
|
||||||
* FILE: lib/user32/windows/input.c
|
* FILE: lib/user32/windows/input.c
|
||||||
|
@ -34,6 +34,20 @@
|
||||||
|
|
||||||
/* FUNCTIONS *****************************************************************/
|
/* FUNCTIONS *****************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
WINBOOL
|
||||||
|
STDCALL
|
||||||
|
DragDetect(
|
||||||
|
HWND hWnd,
|
||||||
|
POINT pt)
|
||||||
|
{
|
||||||
|
return NtUserDragDetect(hWnd, pt.x, pt.y);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: window.c,v 1.49 2003/07/28 08:09:51 ekohl Exp $
|
/* $Id: window.c,v 1.50 2003/08/04 16:56:40 gdalsnes Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS user32.dll
|
* PROJECT: ReactOS user32.dll
|
||||||
|
@ -722,8 +722,7 @@ DeferWindowPos(HDWP hWinPosInfo,
|
||||||
int cy,
|
int cy,
|
||||||
UINT uFlags)
|
UINT uFlags)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
return NtUserDeferWindowPos(hWinPosInfo, hWnd, hWndInsertAfter, x, y, cx, cy, uFlags);
|
||||||
return (HDWP)0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1056,8 +1055,7 @@ GetGUIThreadInfo(DWORD idThread,
|
||||||
HWND STDCALL
|
HWND STDCALL
|
||||||
GetLastActivePopup(HWND hWnd)
|
GetLastActivePopup(HWND hWnd)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
return NtUserGetLastActivePopup(hWnd);
|
||||||
return (HWND)0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1067,7 +1065,7 @@ GetLastActivePopup(HWND hWnd)
|
||||||
HWND STDCALL
|
HWND STDCALL
|
||||||
GetParent(HWND hWnd)
|
GetParent(HWND hWnd)
|
||||||
{
|
{
|
||||||
return NtUserGetAncestor(hWnd, GA_PARENT);
|
return NtUserGetParent(hWnd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1095,25 +1093,24 @@ GetTitleBarInfo(HWND hwnd,
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
HWND STDCALL
|
HWND STDCALL
|
||||||
GetTopWindow(HWND hWnd)
|
GetTopWindow(HWND hWnd)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
if (!hWnd) hWnd = GetDesktopWindow();
|
||||||
return (HWND)0;
|
return GetWindow( hWnd, GW_CHILD );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
HWND STDCALL
|
HWND STDCALL
|
||||||
GetWindow(HWND hWnd,
|
GetWindow(HWND hWnd,
|
||||||
UINT uCmd)
|
UINT uCmd)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
return NtUserGetWindow(hWnd, uCmd);
|
||||||
return (HWND)0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue