New ROS User32...doesn't work...doesn't even compile...not even CLOSE to being complete...(no dllmain yet for instance...)

svn path=/trunk/; revision=4993
This commit is contained in:
Richard Campbell 2003-06-30 22:17:37 +00:00
parent 1f77515cad
commit 677110b2cc
17 changed files with 305 additions and 0 deletions

View file

@ -0,0 +1,14 @@
/* $Id: accessibility.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* PROGRAMMER: Richard Campbell
* UPDATE HISTORY:
* 06-30-2003 CSH Created
*/
BOOL STDCALL
UnhookWinEvent( HWINEVENTHOOK hWinEventHook )
{
UNIMPLEMENTED;
}

View file

@ -0,0 +1,17 @@
/* $Id: dde.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* PROGRAMMER: Richard Campbell
* UPDATE HISTORY:
* 06-30-2003 CSH Created
*/
BOOL STDCALL
UnpackDDElParam( UINT msg,
LPARAM lParam,
PUINT_PTR puiLo,
PUINT_PTR puiHi )
{
UNIMPLEMENTED;
}

View file

@ -0,0 +1,26 @@
/* $Id: help.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* PROGRAMMER: Richard Campbell
* UPDATE HISTORY:
* 06-30-2003 CSH Created
*/
BOOL STDCALL
WinHelpA( HWND hWndMain,
LPCSTR lpszHelp,
UINT uCommand,
ULONG_PTR dwData )
{
UNIMPLEMENTED;
}
BOOL STDCALL
WinHelpW( HWND hWndMain,
LPCWSTR lpszHelp,
UINT uCommand,
ULONG_PTR dwData )
{
UNIMPLEMENTED;
}

View file

@ -0,0 +1,60 @@
/* $Id: io.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* PROGRAMMER: Richard Campbell
* UPDATE HISTORY:
* 06-30-2003 CSH Created
*/
VOID STDCALL
mouse_event( DWORD dwFlags,
DWORD dx,
DWORD dy,
DWORD dwData,
ULONG_PTR dwExtraInfo )
{
UNIMPLEMENTED;
}
VOID STDCALL
keybd_event( BYTE bVk,
BYTE bScan,
DWORD dwFlags,
PTR dwExtraInfo )
{
UNIMPLEMENTED;
}
SHORT STDCALL
VkKeyScanA( TCHAR ch )
{
UNIMPLEMENTED;
}
SHORT STDCALL
VkKeyScanW( WCHAR ch )
{
UNIMPLEMENTED;
}
SHORT STDCALL
VkKeyScanExA( char ch,
HKL dwhkl )
{
UNIMPLEMENTED;
}
SHORT STDCALL
VkKeyScanExW( WCHAR ch,
HKL dwhkl )
{
UNIMPLEMENTED;
}
BOOL STDCALL
UnloadKeyboardLayout( HKL hkl )
{
UNIMPLEMENTED;
}

View file

@ -0,0 +1,18 @@
/* $Id: menu.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* PROGRAMMER: Richard Campbell
* UPDATE HISTORY:
* 06-30-2003 CSH Created
*/
BOOL TrackPopupMenuEx( HMENU hmenu,
UINT fuFlags,
int x,
int y,
HWND hwnd,
LPTPMPARAMS lptpm )
{
UNIMPLEMENTED;
}

View file

@ -0,0 +1,14 @@
/* $Id: message.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* PROGRAMMER: Richard Campbell
* UPDATE HISTORY:
* 06-30-2003 CSH Created
*/
BOOL STDCALL
TranslateMessage( const MSG *lpMsg )
{
UNIMPLEMENTED;
}

View file

@ -0,0 +1,30 @@
/* $Id: region.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* PROGRAMMER: Richard Campbell
* UPDATE HISTORY:
* 06-30-2003 CSH Created
*/
BOOL STDCALL
ValidateRgn( HWND hWnd,
HRGN hRgn )
{
UNIMPLEMENTED;
}
BOOL STDCALL
ValidateRect( HWND hWnd,
CONST RECT *lpRect )
{
UNIMPLEMENTED;
}
BOOL STDCALL
UnionRect( LPRECT lprcDst,
CONST RECT *lprcSrc1,
CONST RECT *lprcSrc2 )
{
UNIMPLEMENTED;
}

View file

@ -0,0 +1,40 @@
/* $Id: string.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* PROGRAMMER: Richard Campbell
* UPDATE HISTORY:
* 06-30-2003 CSH Created
*/
INT STDCALL
wsprintfA( LPCSTR lpOut,
LPCSTR lpFmt,
...)
{
UNIMPLEMENTED;
}
INT STDCALL
wsprintfW( LPCWSTR lpOut,
LPCWSTR lpFmt,
... )
{
UNIMPLEMENTED;
}
INT STDCALL
wvsprintfA( LPSTR lpOutput,
LPSTR lpFmt,
va_list arglist )
{
UNIMPLEMENTED;
}
INT STDCALL
wvsprintfW( LPWSTR lpOutput,
LPWSTR lpFmt,
va_list arglist )
{
UNIMPLEMENTED;
}

View file

@ -0,0 +1,21 @@
/* $Id: thread.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* PROGRAMMER: Richard Campbell
* UPDATE HISTORY:
* 06-30-2003 CSH Created
*/
BOOL STDCALL
WaitMessage( VOID )
{
UNIMPLEMENTED;
}
DWORD STDCALL
WaitForInputIdle( HANDLE hProcess,
DWORD dwMilliseconds )
{
UNIMPLEMENTED;
}

View file

@ -0,0 +1,30 @@
/* $Id: undocumented.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* PROGRAMMER: Richard Campbell
* UPDATE HISTORY:
* 06-30-2003 CSH Created
*/
/*
The functions listed here are not documented on MSDN:
WCSToMBEx
UserRegisterWowHandlers
UserRealizePalette
UserClientDllInitialize
UpdatePerUserSystemParameters
UnregisterHotKey
UnregisterClassW
UnregisterClassA
UnlockWindowStation
UnhookWindowsHook
TranslateMessageEx
TranslateMDISysAccel
TranslateAccelerator
TranslateAcceleratorA
TranslateAcceleratorW
*/

View file

View file

View file

@ -0,0 +1,35 @@
/* $Id: window.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* PROGRAMMER: Richard Campbell
* UPDATE HISTORY:
* 06-30-2003 CSH Created
*/
//WindowFromDC
//WindowFromPoint
HWND STDCALL
WindowFromDC( HDC hDC )
{
UNIMPLEMENTED;
}
HWND STDCALL
WindowFromPoint( POINT Point )
{
UNIMPLEMENTED;
}
BOOL STDCALL
UpdateWindow( HWND hWnd )
{
UNIMPLEMENTED;
}
BOOL STDCALL
UnhookWindowsHookEx( HHOOK hhk )
{
UNIMPLEMENTED;
}