Commit b8e73ace authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msvfw32: Constify a variable.

parent 01e33880
......@@ -767,11 +767,11 @@ LRESULT VFWAPI ICSendMessage16(HIC16 hic, UINT16 msg, DWORD lParam1, DWORD lPara
DWORD WINAPI VideoCapDriverDescAndVer16(WORD nr, LPSTR buf1, WORD buf1len,
LPSTR buf2, WORD buf2len)
{
static const char version_info_spec[] = "\\StringFileInfo\\040904E4\\FileDescription";
DWORD verhandle;
DWORD infosize;
UINT subblocklen;
char *s, buf[2048], fn[260];
static char version_info_spec[] = "\\StringFileInfo\\040904E4\\FileDescription";
LPBYTE infobuf;
LPVOID subblock;
DWORD i, cnt = 0, lRet;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment