mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
Implement GetSysColor()
svn path=/trunk/; revision=4728
This commit is contained in:
@@ -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
|
||||
* PROJECT: ReactOS user32.dll
|
||||
@@ -199,15 +199,6 @@ GetQueueStatus(
|
||||
return 0;
|
||||
}
|
||||
|
||||
DWORD
|
||||
STDCALL
|
||||
GetSysColor(
|
||||
int nIndex)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
}
|
||||
|
||||
HMENU
|
||||
STDCALL
|
||||
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
|
||||
* PROJECT: ReactOS user32.dll
|
||||
@@ -118,6 +118,12 @@ UserSetupInternalPos( VOID )
|
||||
AtomInternalPos = GlobalAddAtomA(Str);
|
||||
}
|
||||
|
||||
DWORD STDCALL
|
||||
GetSysColor(int nIndex)
|
||||
{
|
||||
return SysColours[nIndex];
|
||||
}
|
||||
|
||||
HPEN STDCALL
|
||||
GetSysColorPen( int nIndex )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user