Andrew Talbot : avifil32: Declare some variables static.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Feb 5 07:44:54 CST 2007


Module: wine
Branch: master
Commit: ba9e77b8f641960e330fb7a4485ea33d53681fc6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ba9e77b8f641960e330fb7a4485ea33d53681fc6

Author: Andrew Talbot <Andrew.Talbot at talbotville.com>
Date:   Sun Jan 28 13:07:18 2007 +0000

avifil32: Declare some variables static.

---

 dlls/avifil32/factory.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/avifil32/factory.c b/dlls/avifil32/factory.c
index 24d669d..8b0faac 100644
--- a/dlls/avifil32/factory.c
+++ b/dlls/avifil32/factory.c
@@ -40,8 +40,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(avifile);
 
 HMODULE AVIFILE_hModule   = NULL;
 
-BOOL    AVIFILE_bLocked   = FALSE;
-UINT    AVIFILE_uUseCount = 0;
+static BOOL    AVIFILE_bLocked;
+static UINT    AVIFILE_uUseCount;
 
 static HRESULT WINAPI IClassFactory_fnQueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj);
 static ULONG   WINAPI IClassFactory_fnAddRef(LPCLASSFACTORY iface);




More information about the wine-cvs mailing list