0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 21:13:04 +02:00

win-dshow: Use constant reference for virtualcam CLSID

This commit is contained in:
Richard Stanway 2020-08-29 02:38:10 +02:00
parent 4c08c7bfa4
commit 21fb1e770e

View File

@ -104,8 +104,8 @@ static inline DWORD string_size(const wchar_t *str)
return (DWORD)(wcslen(str) + 1) * sizeof(wchar_t);
}
static bool RegServer(CLSID cls, const wchar_t *desc, const wchar_t *file,
const wchar_t *model = L"Both",
static bool RegServer(const CLSID &cls, const wchar_t *desc,
const wchar_t *file, const wchar_t *model = L"Both",
const wchar_t *type = L"InprocServer32")
{
wchar_t cls_str[CHARS_IN_GUID];
@ -145,7 +145,7 @@ fail:
return success;
}
static bool UnregServer(CLSID cls)
static bool UnregServer(const CLSID &cls)
{
wchar_t cls_str[CHARS_IN_GUID];
wchar_t temp[MAX_PATH];