mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
more exports...hate doing this manually...
svn path=/trunk/; revision=4994
This commit is contained in:
parent
677110b2cc
commit
c43774d9fe
4 changed files with 94 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: io.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
|
/* $Id: io.c,v 1.2 2003/07/01 01:03:49 rcampbell 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
|
||||||
|
@ -58,3 +58,10 @@ UnloadKeyboardLayout( HKL hkl )
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL STDCALL
|
||||||
|
TrackMouseEvent( LPTRACKMOUSEEVENT lpEventTrack )
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: string.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
|
/* $Id: string.c,v 1.2 2003/07/01 01:03:49 rcampbell 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
|
||||||
|
@ -38,3 +38,73 @@ wvsprintfW( LPWSTR lpOutput,
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
INT STDCALL
|
||||||
|
ToUnicodeEx( UINT wVirtKey,
|
||||||
|
UINT wScanCode,
|
||||||
|
const PBYTE lpKeyState,
|
||||||
|
LPWSTR pwszBuff,
|
||||||
|
int cchBuff,
|
||||||
|
UINT wFlags,
|
||||||
|
HKL dwhkl )
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
INT STDCALL
|
||||||
|
ToUnicode( UINT wVirtKey,
|
||||||
|
UINT wScanCode,
|
||||||
|
const PBYTE lpKeyState,
|
||||||
|
LPWSTR pwszBuff,
|
||||||
|
int cchBuff,
|
||||||
|
UINT wFlags )
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
INT STDCALL
|
||||||
|
ToAsciiEx( UINT uVirtKey,
|
||||||
|
UINT uScanCode,
|
||||||
|
PBYTE lpKeyState,
|
||||||
|
LPWORD lpChar,
|
||||||
|
UINT uFlags,
|
||||||
|
HKL dwhkl )
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
INT STDCALL
|
||||||
|
ToAscii( UINT uVirtKey,
|
||||||
|
UINT uScanCode,
|
||||||
|
PBYTE lpKeyState,
|
||||||
|
LPWORD lpChar,
|
||||||
|
UINT uFlags )
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
LONG STDCALL
|
||||||
|
TabbedTextOutA( HDC hDC,
|
||||||
|
int X,
|
||||||
|
int Y,
|
||||||
|
LPCSTR lpString,
|
||||||
|
int nCount,
|
||||||
|
int nTabPositions,
|
||||||
|
CONST LPINT lpnTabStopPositions,
|
||||||
|
int nTabOrigin )
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
LONG STDCALL
|
||||||
|
TabbedTextOutW( HDC hDC,
|
||||||
|
int X,
|
||||||
|
int Y,
|
||||||
|
LPCWSTR lpString,
|
||||||
|
int nCount,
|
||||||
|
int nTabPositions,
|
||||||
|
CONST LPINT lpnTabStopPositions,
|
||||||
|
int nTabOrigin )
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: undocumented.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
|
/* $Id: undocumented.c,v 1.2 2003/07/01 01:03:49 rcampbell 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
|
||||||
|
@ -25,6 +25,9 @@ TranslateMDISysAccel
|
||||||
TranslateAccelerator
|
TranslateAccelerator
|
||||||
TranslateAcceleratorA
|
TranslateAcceleratorA
|
||||||
TranslateAcceleratorW
|
TranslateAcceleratorW
|
||||||
|
TileChildWindows
|
||||||
|
|
||||||
|
Next function:
|
||||||
|
SystemParametersInfoA/W
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: window.c,v 1.1 2003/06/30 22:17:37 rcampbell Exp $
|
/* $Id: window.c,v 1.2 2003/07/01 01:03:49 rcampbell 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
|
||||||
|
@ -33,3 +33,13 @@ UnhookWindowsHookEx( HHOOK hhk )
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WORD STDCALL
|
||||||
|
TileWindows( HWND hwndParent,
|
||||||
|
UINT wHow,
|
||||||
|
RECT *lpRect,
|
||||||
|
UINT cKids,
|
||||||
|
const HWND *lpKids )
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue