user32: Move a few 16-bit stubs to user16.c.

This commit is contained in:
Alexandre Julliard 2009-12-23 19:49:27 +01:00
parent cf81d0f0f9
commit da57abcb02
2 changed files with 40 additions and 20 deletions

View File

@ -626,26 +626,6 @@ VOID WINAPI LoadLocalFonts(VOID)
}
/***********************************************************************
* USER_489 (USER.489)
*/
LONG WINAPI stub_USER_489(void) { FIXME("stub\n"); return 0; }
/***********************************************************************
* USER_490 (USER.490)
*/
LONG WINAPI stub_USER_490(void) { FIXME("stub\n"); return 0; }
/***********************************************************************
* USER_492 (USER.492)
*/
LONG WINAPI stub_USER_492(void) { FIXME("stub\n"); return 0; }
/***********************************************************************
* USER_496 (USER.496)
*/
LONG WINAPI stub_USER_496(void) { FIXME("stub\n"); return 0; }
/***********************************************************************
* User32InitializeImmEntryTable
*/

View File

@ -2875,6 +2875,46 @@ BOOL16 WINAPI SystemParametersInfo16( UINT16 uAction, UINT16 uParam,
}
/***********************************************************************
* USER_489 (USER.489)
*/
LONG WINAPI stub_USER_489(void)
{
FIXME("stub\n");
return 0;
}
/***********************************************************************
* USER_490 (USER.490)
*/
LONG WINAPI stub_USER_490(void)
{
FIXME("stub\n");
return 0;
}
/***********************************************************************
* USER_492 (USER.492)
*/
LONG WINAPI stub_USER_492(void)
{
FIXME("stub\n");
return 0;
}
/***********************************************************************
* USER_496 (USER.496)
*/
LONG WINAPI stub_USER_496(void)
{
FIXME("stub\n");
return 0;
}
/***********************************************************************
* FormatMessage (USER.606)
*/