Module: wine Branch: master Commit: 97a22034914a4245d5d955d41491a465b4707385 URL: http://source.winehq.org/git/wine.git/?a=commit;h=97a22034914a4245d5d955d414...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Mon Jan 22 22:30:22 2007 +0000
qcap: Declare some items static.
---
dlls/qcap/dllsetup.c | 2 +- dlls/qcap/v4l.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/qcap/dllsetup.c b/dlls/qcap/dllsetup.c index d64b9db..036228a 100644 --- a/dlls/qcap/dllsetup.c +++ b/dlls/qcap/dllsetup.c @@ -57,7 +57,7 @@ static WCHAR const tmodel_both[] = /* * 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 --git a/dlls/qcap/v4l.c b/dlls/qcap/v4l.c index bfc5236..bb8dfb9 100644 --- a/dlls/qcap/v4l.c +++ b/dlls/qcap/v4l.c @@ -136,7 +136,7 @@ static const struct renderlist renderlis { 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; */