Module: wine Branch: master Commit: cc6e4e955e05ac3189c7d8c6498042fc093fad26 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cc6e4e955e05ac3189c7d8c649...
Author: Francois Gouget fgouget@free.fr Date: Sat Dec 13 12:06:14 2008 +0100
gdi32: Make [GS]etDCState() static.
---
dlls/gdi32/dc.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/gdi32/dc.c b/dlls/gdi32/dc.c index 8e4601d..c8a3c4c 100644 --- a/dlls/gdi32/dc.c +++ b/dlls/gdi32/dc.c @@ -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;