Eric Pouech : Made some functions static.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Dec 12 06:44:38 CST 2005


Module: wine
Branch: refs/heads/master
Commit: 8cddd5d2fbd00b8addb02c57cdfe95002cec3250
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=8cddd5d2fbd00b8addb02c57cdfe95002cec3250

Author: Eric Pouech <eric.pouech at wanadoo.fr>
Date:   Mon Dec 12 11:53:56 2005 +0100

Made some functions static.

---

 dlls/ddraw/tests/ddrawmodes.c |    2 +-
 dlls/setupapi/queue.c         |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ddraw/tests/ddrawmodes.c b/dlls/ddraw/tests/ddrawmodes.c
index 065157d..679ad12 100644
--- a/dlls/ddraw/tests/ddrawmodes.c
+++ b/dlls/ddraw/tests/ddrawmodes.c
@@ -94,7 +94,7 @@ static void flushdisplaymodes(void)
     modes_cnt = modes_size = 0;
 }
 
-HRESULT WINAPI enummodescallback(LPDDSURFACEDESC lpddsd, LPVOID lpContext)
+static HRESULT WINAPI enummodescallback(LPDDSURFACEDESC lpddsd, LPVOID lpContext)
 {
     trace("Width = %li, Height = %li, Refresh Rate = %li\r\n",
         lpddsd->dwWidth, lpddsd->dwHeight,
diff --git a/dlls/setupapi/queue.c b/dlls/setupapi/queue.c
index a444f9d..390fd04 100644
--- a/dlls/setupapi/queue.c
+++ b/dlls/setupapi/queue.c
@@ -947,7 +947,7 @@ static BOOL create_full_pathW(const WCHA
     return ret;
 }
 
-BOOL static do_file_copyW( LPCWSTR source, LPCWSTR target, DWORD style)
+static BOOL do_file_copyW( LPCWSTR source, LPCWSTR target, DWORD style)
 {
     BOOL rc = FALSE;
     BOOL docopy = TRUE;




More information about the wine-cvs mailing list