fix some warnings
This commit is contained in:
parent
3624008099
commit
ff9edf3e92
1 changed files with 2 additions and 2 deletions
|
@ -89,10 +89,10 @@ BOOL WINAPI DllMain(HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
|
|||
if (status == ERROR_SUCCESS)
|
||||
{
|
||||
LPCTSTR x264 = "x264vfw.dll";
|
||||
RegSetValueExA(hkey,"vidc.x264", 0, REG_SZ, x264, strlen(x264) + 1);
|
||||
RegSetValueExA(hkey,"vidc.x264", 0, REG_SZ, (const BYTE*)x264, strlen(x264) + 1);
|
||||
|
||||
LPCTSTR xvid = "xvidvfw.dll";
|
||||
RegSetValueExA(hkey, "vidc.xvid", 0, REG_SZ, xvid, strlen(xvid) + 1);
|
||||
RegSetValueExA(hkey, "vidc.xvid", 0, REG_SZ, (const BYTE*)xvid, strlen(xvid) + 1);
|
||||
|
||||
RegCloseKey(hkey);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue