Imported Upstream version 4.6.0.125

Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2016-08-03 10:59:49 +00:00
parent a569aebcfd
commit e79aa3c0ed
17047 changed files with 3137615 additions and 392334 deletions

View File

@@ -0,0 +1,40 @@
//------------------------------------------------------------------------------
// <copyright file="INotifySink2.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.Services.Interop {
using System;
using System.Threading;
using System.Runtime.InteropServices;
using System.Security;
[ComImport(), Guid("C43CC2F3-90AF-4e93-9112-DFB8B36749B5"), InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
[SuppressUnmanagedCodeSecurity]
internal interface INotifySink2 {
void OnSyncCallOut(
[In] CallId callId,
[Out] out IntPtr out_ppBuffer, // byte**
[In, Out] ref int inout_pBufferSize); // DWORD*
void OnSyncCallEnter(
[In] CallId callId,
[In, MarshalAs(UnmanagedType.LPArray)] byte[] in_pBuffer, // byte*
[In] int in_BufferSize);
void OnSyncCallReturn(
[In] CallId callId,
[In, MarshalAs(UnmanagedType.LPArray)] byte[] in_pBuffer, // byte*
[In] int in_BufferSize);
void OnSyncCallExit(
[In] CallId callId,
[Out] out IntPtr out_ppBuffer, // byte**
[In, Out] ref int inout_pBufferSize);
}
}