Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGert Driesen <drieseng@users.sourceforge.net>2004-06-18 21:22:44 +0400
committerGert Driesen <drieseng@users.sourceforge.net>2004-06-18 21:22:44 +0400
commit3f09099bcd518bbe63442e6821195efba00f60cf (patch)
treeb8f6f8c086d84b725682b823d538496c5110c6db /mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
parent3939fcd22877df42a1e581e6076409d29098e3de (diff)
* IAppDomainFactory.cs: added missing marshalling attributes
* IISAPIRuntime.cs: added missing marshalling attributes svn path=/trunk/mcs/; revision=29900
Diffstat (limited to 'mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs')
-rw-r--r--mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs15
1 files changed, 8 insertions, 7 deletions
diff --git a/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs b/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
index 6f553a3b0ca..42b6c4217a8 100644
--- a/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
+++ b/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
@@ -14,11 +14,12 @@ namespace System.Web.Hosting
{
[Guid ("c4918956-485b-3503-bd10-9083e3f6b66c")]
[InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
- public interface IISAPIRuntime
- {
- void DoGCCollect ();
- int ProcessRequest ([In] IntPtr ecb, [In] int useProcessModel);
- void StartProcessing ();
- void StopProcessing ();
- }
+ public interface IISAPIRuntime
+ {
+ void DoGCCollect ();
+ [return: MarshalAs (UnmanagedType.I4)]
+ int ProcessRequest ([In] IntPtr ecb, [In, MarshalAs(UnmanagedType.I4)] int useProcessModel);
+ void StartProcessing ();
+ void StopProcessing ();
+ }
}