gdi32: Make [GS]etDCState() static.

This commit is contained in:
Francois Gouget 2008-12-13 12:06:14 +01:00 committed by Alexandre Julliard
parent 766c6deaf7
commit cc6e4e955e
1 changed files with 2 additions and 2 deletions

View File

@ -327,7 +327,7 @@ void DC_UpdateXforms( DC *dc )
/***********************************************************************
* GetDCState (Not a Windows API)
*/
HDC WINAPI GetDCState( HDC hdc )
static HDC GetDCState( HDC hdc )
{
DC * newdc, * dc;
HGDIOBJ handle;
@ -428,7 +428,7 @@ HDC WINAPI GetDCState( HDC hdc )
/***********************************************************************
* SetDCState (Not a Windows API)
*/
void WINAPI SetDCState( HDC hdc, HDC hdcs )
static void SetDCState( HDC hdc, HDC hdcs )
{
DC *dc, *dcs;