mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Implement GetSysColor()
svn path=/trunk/; revision=4728
This commit is contained in:
parent
58781325ac
commit
388f86d19c
2 changed files with 8 additions and 11 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: stubs.c,v 1.20 2003/05/12 19:30:00 jfilby Exp $
|
/* $Id: stubs.c,v 1.21 2003/05/19 18:36:42 gvg 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
|
||||||
|
@ -199,15 +199,6 @@ GetQueueStatus(
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
DWORD
|
|
||||||
STDCALL
|
|
||||||
GetSysColor(
|
|
||||||
int nIndex)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
HMENU
|
HMENU
|
||||||
STDCALL
|
STDCALL
|
||||||
GetSystemMenu(
|
GetSystemMenu(
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: defwnd.c,v 1.44 2003/05/12 19:30:00 jfilby Exp $
|
/* $Id: defwnd.c,v 1.45 2003/05/19 18:36:43 gvg 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
|
||||||
|
@ -118,6 +118,12 @@ UserSetupInternalPos( VOID )
|
||||||
AtomInternalPos = GlobalAddAtomA(Str);
|
AtomInternalPos = GlobalAddAtomA(Str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DWORD STDCALL
|
||||||
|
GetSysColor(int nIndex)
|
||||||
|
{
|
||||||
|
return SysColours[nIndex];
|
||||||
|
}
|
||||||
|
|
||||||
HPEN STDCALL
|
HPEN STDCALL
|
||||||
GetSysColorPen( int nIndex )
|
GetSysColorPen( int nIndex )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue