Commit 0844afc3 authored by Alexandre Julliard's avatar Alexandre Julliard

Moved the syscolor functions to dlls/user/sysparams.c.

parent 825920a0
...@@ -18,7 +18,6 @@ SPEC_SRCS16 = \ ...@@ -18,7 +18,6 @@ SPEC_SRCS16 = \
C_SRCS = \ C_SRCS = \
$(TOPOBJDIR)/windows/driver.c \ $(TOPOBJDIR)/windows/driver.c \
$(TOPOBJDIR)/windows/multimon.c \ $(TOPOBJDIR)/windows/multimon.c \
$(TOPOBJDIR)/windows/syscolor.c \
$(TOPOBJDIR)/windows/user.c \ $(TOPOBJDIR)/windows/user.c \
button.c \ button.c \
caret.c \ caret.c \
......
...@@ -125,6 +125,15 @@ BOOL16 WINAPI ExitWindows16( DWORD dwReturnCode, UINT16 wReserved ) ...@@ -125,6 +125,15 @@ BOOL16 WINAPI ExitWindows16( DWORD dwReturnCode, UINT16 wReserved )
/*********************************************************************** /***********************************************************************
* GetTimerResolution (USER.14)
*/
LONG WINAPI GetTimerResolution16(void)
{
return (1000);
}
/***********************************************************************
* ClipCursor (USER.16) * ClipCursor (USER.16)
*/ */
BOOL16 WINAPI ClipCursor16( const RECT16 *rect ) BOOL16 WINAPI ClipCursor16( const RECT16 *rect )
...@@ -848,6 +857,15 @@ UINT16 WINAPI GlobalGetAtomName16(ATOM nAtom, LPSTR lpBuffer, INT16 nSize) ...@@ -848,6 +857,15 @@ UINT16 WINAPI GlobalGetAtomName16(ATOM nAtom, LPSTR lpBuffer, INT16 nSize)
/*********************************************************************** /***********************************************************************
* ControlPanelInfo (USER.273)
*/
void WINAPI ControlPanelInfo16( INT16 nInfoType, WORD wData, LPSTR lpBuffer )
{
FIXME("(%d, %04x, %p): stub.\n", nInfoType, wData, lpBuffer);
}
/***********************************************************************
* GetSysColorBrush (USER.281) * GetSysColorBrush (USER.281)
*/ */
HBRUSH16 WINAPI GetSysColorBrush16( INT16 index ) HBRUSH16 WINAPI GetSysColorBrush16( INT16 index )
......
...@@ -200,7 +200,6 @@ extern BOOL HOOK_IsHooked( INT id ); ...@@ -200,7 +200,6 @@ extern BOOL HOOK_IsHooked( INT id );
extern LRESULT MSG_SendInternalMessageTimeout( DWORD dest_pid, DWORD dest_tid, extern LRESULT MSG_SendInternalMessageTimeout( DWORD dest_pid, DWORD dest_tid,
UINT msg, WPARAM wparam, LPARAM lparam, UINT msg, WPARAM wparam, LPARAM lparam,
UINT flags, UINT timeout, PDWORD_PTR res_ptr ); UINT flags, UINT timeout, PDWORD_PTR res_ptr );
extern void SYSCOLOR_Init(void);
extern HPEN SYSCOLOR_GetPen( INT index ); extern HPEN SYSCOLOR_GetPen( INT index );
extern void SYSPARAMS_Init(void); extern void SYSPARAMS_Init(void);
extern void USER_CheckNotLock(void); extern void USER_CheckNotLock(void);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment