|
file:///C:\Users\Administrator\AppData\Roaming\Tencent\Users\1132547154\QQ\WinTemp\RichOle\P_7T79N`Z8{KKV4I@}H`(EO.png
工程生成Release版本在其他电脑,或者U盘之中运行时。
共享桌面代码运行将会导致问题。
当代码运行到下面的 ApplyConfig(); 配置生效的时候 ,就会调用导致弹出图片中所示的问题。
// 设置桌面共享
DWORD bEnableScreenCamera = TRUE;
BRAC_SetSDKOption(BRAC_SO_CORESDK_SCREENCAMERACTRL,(char*)&bEnableScreenCamera, sizeof(DWORD));
//选择桌面设备
CStringArray arrayDevice;
GetVideoEnum(arrayDevice);
for(int n =0; n < arrayDevice.GetSize(); ++n)
{
if(arrayDevice[n].Find("Native Screen Camera",2) != -1)
{
SelectVideo(arrayDevice[n]);
// AfxMessageBox(arrayDevice[n]);
bFind = TRUE;
break;
}
}
//配置生效
ApplyConfig();
|
|