當前位置: 首頁>>代碼示例>>C#>>正文


C# BearWare類代碼示例

本文整理匯總了C#中BearWare的典型用法代碼示例。如果您正苦於以下問題:C# BearWare類的具體用法?C# BearWare怎麽用?C# BearWare使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


BearWare類屬於命名空間,在下文中一共展示了BearWare類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: TT_DoNewUserAccount

 public static extern int TT_DoNewUserAccount(IntPtr lpTTInstance,
                                           ref BearWare.UserAccount lpUserAccount);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:2,代碼來源:TeamTalkInterop.cs

示例2: TT_Mixer_SetWaveInVolume

 public static extern bool TT_Mixer_SetWaveInVolume(int nWaveDeviceID,
                                           BearWare.MixerControl nControl,
                                           int nVolume);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:3,代碼來源:TeamTalkInterop.cs

示例3: TT_GetMessage

 public static extern bool TT_GetMessage(IntPtr lpTTInstance,
                                        ref BearWare.TTMessage pMsg,
                                        ref int pnWaitMs);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:3,代碼來源:TeamTalkInterop.cs

示例4: TT_DBG_SetSoundInputTone

 public static extern bool TT_DBG_SetSoundInputTone(IntPtr lpTTInstance,
                                                    BearWare.StreamType uStreamTypes,
                                                    int nFrequency);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:3,代碼來源:TeamTalkInterop.cs

示例5: TT_Mixer_SetWaveOutMute

 public static extern bool TT_Mixer_SetWaveOutMute(int nWaveDeviceID,
                                          BearWare.MixerControl nControl,
                                          bool bMute);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:3,代碼來源:TeamTalkInterop.cs

示例6: TT_AcquireUserAudioBlock

 public static extern IntPtr TT_AcquireUserAudioBlock(IntPtr lpTTInstance,
                                                      BearWare.StreamType nStreamType,
                                                      int nUserID);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:3,代碼來源:TeamTalkInterop.cs

示例7: TT_DesktopInput_KeyTranslate

 public static extern int TT_DesktopInput_KeyTranslate(BearWare.TTKeyTranslate nTranslate,
                                                       [In] BearWare.DesktopInput[] lpDesktopInputs,
                                                      [In, Out] BearWare.DesktopInput[] lpTranslatedDesktopInputs,
                                                       int nDesktopInputCount);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:4,代碼來源:TeamTalkInterop.cs

示例8: TT_GetUser

 public static extern bool TT_GetUser(IntPtr lpTTInstance,
                                 int nUserID, ref BearWare.User lpUser);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:2,代碼來源:TeamTalkInterop.cs

示例9: TT_GetUserStatistics

 public static extern bool TT_GetUserStatistics(IntPtr lpTTInstance,
                                           int nUserID,
                                           ref BearWare.UserStatistics lpStats);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:3,代碼來源:TeamTalkInterop.cs

示例10: TT_GetChannelFile

 public static extern bool TT_GetChannelFile(IntPtr lpTTInstance,
                                             int nChannelID,
                                             int nFileID,
                                             ref BearWare.RemoteFile lpRemoteFile);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:4,代碼來源:TeamTalkInterop.cs

示例11: TT_GetMyUserAccount

 public static extern bool TT_GetMyUserAccount(IntPtr lpTTInstance,
                                          ref BearWare.UserAccount lpUserAccount);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:2,代碼來源:TeamTalkInterop.cs

示例12: TT_GetChannel

 public static extern bool TT_GetChannel(IntPtr lpTTInstance,
                                    int nChannelID,
                                    ref BearWare.Channel lpChannel);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:3,代碼來源:TeamTalkInterop.cs

示例13: TT_GetServerProperties

 public static extern bool TT_GetServerProperties(IntPtr lpTTInstance,
                                             ref BearWare.ServerProperties lpProperties);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:2,代碼來源:TeamTalkInterop.cs

示例14: MyEventHandler

        public const int WM_TEAMTALK_CLIENTEVENT = 0x8000 + 1; /* WM_APP */

        public MyEventHandler(BearWare.TeamTalk tt)
        {
            m_tt = tt;
        }
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:6,代碼來源:TeamTalkInterop.cs

示例15: TT_SetUserMediaStorageDir

 public static extern bool TT_SetUserMediaStorageDir(IntPtr lpTTInstance,
                                            int nUserID,
                                            [MarshalAs(UnmanagedType.LPWStr)] string szFolderPath,
                                            [MarshalAs(UnmanagedType.LPWStr)] string szFileNameVars,
                                            BearWare.AudioFileFormat uAFF);
開發者ID:sayi21cn,項目名稱:TeamTalk5,代碼行數:5,代碼來源:TeamTalkInterop.cs


注:本文中的BearWare類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。