コード例 #1
0
ファイル: XAudio2_7.cs プロジェクト: werlon/cscore
 /// <summary>
 ///     Changes <b>global</b> debug logging options for XAudio2.
 /// </summary>
 /// <param name="debugConfiguration"><see cref="DebugConfiguration" /> structure that contains the new debug configuration.</param>
 /// <param name="reserved">Reserved parameter. Must me NULL.</param>
 /// <returns>HRESULT</returns>
 public override unsafe void SetDebugConfigurationNative(DebugConfiguration debugConfiguration, IntPtr reserved)
 {
     InteropCalls.CallI4(UnsafeBasePtr, &debugConfiguration, reserved.ToPointer(), ((void **)(*(void **)UnsafeBasePtr))[15]);
 }
コード例 #2
0
ファイル: XAudio2_7.cs プロジェクト: hoangduit/cscore
 /// <summary>
 ///     Changes <b>global</b> debug logging options for XAudio2.
 /// </summary>
 /// <param name="debugConfiguration"><see cref="DebugConfiguration" /> structure that contains the new debug configuration.</param>
 /// <param name="reserved">Reserved parameter. Must me NULL.</param>
 /// <returns>HRESULT</returns>
 public unsafe override void SetDebugConfigurationNative(DebugConfiguration debugConfiguration, IntPtr reserved)
 {
     InteropCalls.CallI4(UnsafeBasePtr, &debugConfiguration, reserved.ToPointer(), ((void**) (*(void**) UnsafeBasePtr))[15]);
 }
コード例 #3
0
 /// <summary>
 ///     Changes <b>global</b> debug logging options for XAudio2.
 /// </summary>
 /// <param name="debugConfiguration"><see cref="DebugConfiguration" /> structure that contains the new debug configuration.</param>
 public void SetDebugConfiguration(DebugConfiguration debugConfiguration)
 {
     SetDebugConfigurationNative(debugConfiguration, IntPtr.Zero);
 }
コード例 #4
0
 /// <summary>
 ///     Changes <b>global</b> debug logging options for XAudio2.
 /// </summary>
 /// <param name="debugConfiguration"><see cref="DebugConfiguration" /> structure that contains the new debug configuration.</param>
 /// <param name="reserved">Reserved parameter. Must me NULL.</param>
 /// <returns>HRESULT</returns>
 public abstract void SetDebugConfigurationNative(DebugConfiguration debugConfiguration, IntPtr reserved);
コード例 #5
0
ファイル: XAudio2.cs プロジェクト: hoangduit/cscore
 /// <summary>
 ///     Changes <b>global</b> debug logging options for XAudio2.
 /// </summary>
 /// <param name="debugConfiguration"><see cref="DebugConfiguration" /> structure that contains the new debug configuration.</param>
 /// <param name="reserved">Reserved parameter. Must me NULL.</param>
 /// <returns>HRESULT</returns>
 public abstract void SetDebugConfigurationNative(DebugConfiguration debugConfiguration, IntPtr reserved);
コード例 #6
0
ファイル: XAudio2.cs プロジェクト: hoangduit/cscore
 /// <summary>
 ///     Changes <b>global</b> debug logging options for XAudio2.
 /// </summary>
 /// <param name="debugConfiguration"><see cref="DebugConfiguration" /> structure that contains the new debug configuration.</param>
 public void SetDebugConfiguration(DebugConfiguration debugConfiguration)
 {
     SetDebugConfigurationNative(debugConfiguration, IntPtr.Zero);
 }
コード例 #7
0
ファイル: InteropCalls.cs プロジェクト: hoangduit/cscore
 internal static unsafe void CallI4(void* _basePtr, DebugConfiguration* debugConfiguration, void* p1, void* p2)
 {
     throw new NotImplementedException();
 }