qcap: Declare some items static

Andrew Talbot Andrew.Talbot at talbotville.com
Mon Jan 22 16:30:22 CST 2007


Changelog:
    qcap: Declare some items static.

diff -urN a/dlls/qcap/dllsetup.c b/dlls/qcap/dllsetup.c
--- a/dlls/qcap/dllsetup.c	2007-01-06 11:38:10.000000000 +0000
+++ b/dlls/qcap/dllsetup.c	2007-01-22 19:54:29.000000000 +0000
@@ -57,7 +57,7 @@
 /*
  * Delete a key and all its subkeys
  */
-HRESULT DeleteEntireSubKey(HKEY hkey, LPWSTR strSubKey)
+static HRESULT DeleteEntireSubKey(HKEY hkey, LPWSTR strSubKey)
 {
     WCHAR buffer[MAX_KEY_LEN];
     DWORD dw = MAX_KEY_LEN;
diff -urN a/dlls/qcap/v4l.c b/dlls/qcap/v4l.c
--- a/dlls/qcap/v4l.c	2007-01-05 21:55:00.000000000 +0000
+++ b/dlls/qcap/v4l.c	2007-01-22 19:55:01.000000000 +0000
@@ -136,7 +136,7 @@
     {  0, NULL,                          NULL },
 };
 
-const int fallback_V4l[] = { 4, 5, 7, 8, 9, 13, 15, 14, 16, 11, -1 };
+static const int fallback_V4l[] = { 4, 5, 7, 8, 9, 13, 15, 14, 16, 11, -1 };
 /* Fallback: First try raw formats (Should try yuv first perhaps?), then yuv */
 
 /* static const Capture defbox; */



More information about the wine-patches mailing list