当前位置: 首页>>代码示例>>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;未经允许,请勿转载。