|
地板
楼主 |
发表于 2016-1-6 20:12:35
|
只看该作者
您好,- // 操作用户视频(扩展)
- BRAC_API DWORD BRAC_UserCameraControlEx(DWORD dwUserid, BOOL bOpen, DWORD dwStreamIndex=0, DWORD dwFlags=0, LPCTSTR lpStrParam=NULL);
- // 操作用户语音(扩展)
- BRAC_API DWORD BRAC_UserSpeakControlEx(DWORD dwUserid, BOOL bOpen, DWORD dwStreamIndex=0, DWORD dwFlags=0, LPCTSTR lpStrParam=NULL);
- // 设置视频显示位置(扩展)
- BRAC_API DWORD BRAC_SetVideoPosEx(DWORD dwUserid, HWND hWnd, DWORD dwLeft=0, DWORD dwTop=0, DWORD dwRight=0, DWORD dwBottom=0, DWORD dwStreamIndex=0, DWORD dwFlags=0);
- // 设置指定用户音视频流相关参数(主要针对本地用户)
- BRAC_API DWORD BRAC_SetUserStreamInfo(DWORD dwUserId, DWORD dwStreamIndex, int infoname, char FAR* infoval, int infolen);
- // 获取指定用户音视频流相关参数
- BRAC_API DWORD BRAC_GetUserStreamInfo(DWORD dwUserId, DWORD dwStreamIndex, int infoname, char FAR* infoval, int infolen);
复制代码 这个在BRanychatcoresdk.cs里面没有这方面的定义,需要我自己去写吗?在这里只有- [DllImport(AnyChatCoreSDKDll, EntryPoint = "BRAC_UserCameraControl", CallingConvention = CallingConvention.Cdecl)]
- public static extern int UserCameraControl(int userid, bool open);
复制代码 引入,如果需要引入,我该怎么引入(c#)? |
|