dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/InteropService


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/InteropServices CallingConvention.cs,1.1,1.2 CharSet.cs,1.1,1.2 DllImportAttribute.cs,1.2,1.3 FieldOffsetAttribute.cs,1.2,1.3 GCHandle.cs,1.5,1.6 GCHandleType.cs,1.1,1.2 ICustomAdapter.cs,1.1,1.2 ICustomFactory.cs,1.1,1.2 ICustomMarshaler.cs,1.1,1.2 InAttribute.cs,1.2,1.3 LayoutKind.cs,1.1.1.1,1.2 Marshal.cs,1.5,1.6 MarshalAsAttribute.cs,1.3,1.4 OutAttribute.cs,1.2,1.3 StructLayoutAttribute.cs,1.2,1.3 UnmanagedType.cs,1.1,1.2
Date: Tue, 15 Apr 2003 01:13:45 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices
In directory 
subversions:/tmp/cvs-serv18412/runtime/System/Runtime/InteropServices

Modified Files:
        CallingConvention.cs CharSet.cs DllImportAttribute.cs 
        FieldOffsetAttribute.cs GCHandle.cs GCHandleType.cs 
        ICustomAdapter.cs ICustomFactory.cs ICustomMarshaler.cs 
        InAttribute.cs LayoutKind.cs Marshal.cs MarshalAsAttribute.cs 
        OutAttribute.cs StructLayoutAttribute.cs UnmanagedType.cs 
Log Message:


Mark up members of the "RuntimeInfrastructure" subset of ECMA
with CONFIG_RUNTIME_INFRA.


Index: CallingConvention.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/CallingConvention.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** CallingConvention.cs        14 Nov 2001 06:54:45 -0000      1.1
--- CallingConvention.cs        15 Apr 2003 05:13:43 -0000      1.2
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  public enum CallingConvention
  {
***************
*** 32,35 ****
--- 34,39 ----
  
  }; // enum CallingConvention
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: CharSet.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/CharSet.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** CharSet.cs  14 Nov 2001 06:54:45 -0000      1.1
--- CharSet.cs  15 Apr 2003 05:13:43 -0000      1.2
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  public enum CharSet
  {
***************
*** 31,34 ****
--- 33,38 ----
  
  }; // enum CharSet
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: DllImportAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/DllImportAttribute.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** DllImportAttribute.cs       14 Nov 2001 06:54:45 -0000      1.2
--- DllImportAttribute.cs       15 Apr 2003 05:13:43 -0000      1.3
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  [AttributeUsage(AttributeTargets.Method, AllowMultiple=false, 
Inherited=false)]
  public sealed class DllImportAttribute : Attribute
***************
*** 53,56 ****
--- 55,60 ----
  
  }; // class DllImportAttribute
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: FieldOffsetAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/FieldOffsetAttribute.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** FieldOffsetAttribute.cs     14 Nov 2001 06:54:45 -0000      1.2
--- FieldOffsetAttribute.cs     15 Apr 2003 05:13:43 -0000      1.3
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  [AttributeUsage(AttributeTargets.Field, AllowMultiple=false, Inherited=false)]
  public sealed class FieldOffsetAttribute : Attribute
***************
*** 45,48 ****
--- 47,52 ----
  
  }; // class FieldOffsetAttribute
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: GCHandle.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/GCHandle.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** GCHandle.cs 19 Jun 2002 02:59:18 -0000      1.5
--- GCHandle.cs 15 Apr 2003 05:13:43 -0000      1.6
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  using System.Runtime.CompilerServices;
  
***************
*** 177,180 ****
--- 179,184 ----
  
  }; // struct GCHandle
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: GCHandleType.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/GCHandleType.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** GCHandleType.cs     14 Nov 2001 06:54:45 -0000      1.1
--- GCHandleType.cs     15 Apr 2003 05:13:43 -0000      1.2
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  public enum GCHandleType
  {
***************
*** 31,34 ****
--- 33,38 ----
  
  }; // enum GCHandleType
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: ICustomAdapter.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/ICustomAdapter.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ICustomAdapter.cs   13 Dec 2002 03:45:57 -0000      1.1
--- ICustomAdapter.cs   15 Apr 2003 05:13:43 -0000      1.2
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  public interface ICustomAdapter
  {
***************
*** 30,33 ****
--- 32,37 ----
  
  }; // interface ICustomAdapter
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: ICustomFactory.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/ICustomFactory.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ICustomFactory.cs   13 Dec 2002 03:45:57 -0000      1.1
--- ICustomFactory.cs   15 Apr 2003 05:13:43 -0000      1.2
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  public interface ICustomFactory
  {
***************
*** 30,33 ****
--- 32,37 ----
  
  }; // interface ICustomFactory
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: ICustomMarshaler.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/ICustomMarshaler.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ICustomMarshaler.cs 13 Dec 2002 03:45:57 -0000      1.1
--- ICustomMarshaler.cs 15 Apr 2003 05:13:43 -0000      1.2
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  public interface ICustomMarshaler
  {
***************
*** 48,51 ****
--- 50,55 ----
  
  }; // interface ICustomMarshaler
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: InAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/InAttribute.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** InAttribute.cs      14 Nov 2001 06:54:45 -0000      1.2
--- InAttribute.cs      15 Apr 2003 05:13:43 -0000      1.3
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  [AttributeUsage(AttributeTargets.Parameter,
                                AllowMultiple=false, Inherited=false)]
***************
*** 32,35 ****
--- 34,39 ----
  
  }; // class InAttribute
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: LayoutKind.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/LayoutKind.cs,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** LayoutKind.cs       7 Aug 2001 22:51:47 -0000       1.1.1.1
--- LayoutKind.cs       15 Apr 2003 05:13:43 -0000      1.2
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  public enum LayoutKind
  {
***************
*** 30,33 ****
--- 32,37 ----
  
  }; // enum LayoutKind
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: Marshal.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/Marshal.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** Marshal.cs  4 Apr 2003 21:53:53 -0000       1.5
--- Marshal.cs  15 Apr 2003 05:13:43 -0000      1.6
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  using System;
  using System.Runtime.CompilerServices;
***************
*** 593,596 ****
--- 595,600 ----
  
  }; // class Marshal
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: MarshalAsAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/MarshalAsAttribute.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** MarshalAsAttribute.cs       6 Dec 2001 04:40:42 -0000       1.3
--- MarshalAsAttribute.cs       15 Apr 2003 05:13:43 -0000      1.4
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  [AttributeUsage(AttributeTargets.Field |
                                AttributeTargets.Parameter |
***************
*** 60,63 ****
--- 62,67 ----
  
  }; // class MarshalAsAttribute
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: OutAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/OutAttribute.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** OutAttribute.cs     14 Nov 2001 06:54:45 -0000      1.2
--- OutAttribute.cs     15 Apr 2003 05:13:43 -0000      1.3
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  [AttributeUsage(AttributeTargets.Parameter,
                                AllowMultiple=false, Inherited=false)]
***************
*** 32,35 ****
--- 34,39 ----
  
  }; // class OutAttribute
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: StructLayoutAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/StructLayoutAttribute.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** StructLayoutAttribute.cs    14 Nov 2001 06:54:45 -0000      1.2
--- StructLayoutAttribute.cs    15 Apr 2003 05:13:43 -0000      1.3
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct,
                                AllowMultiple=false, Inherited=false)]
***************
*** 56,59 ****
--- 58,63 ----
  
  }; // class StructLayoutAttribute
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices

Index: UnmanagedType.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/InteropServices/UnmanagedType.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** UnmanagedType.cs    14 Nov 2001 06:54:45 -0000      1.1
--- UnmanagedType.cs    15 Apr 2003 05:13:43 -0000      1.2
***************
*** 23,26 ****
--- 23,28 ----
  {
  
+ #if CONFIG_RUNTIME_INFRA
+ 
  public enum UnmanagedType
  {
***************
*** 62,65 ****
--- 64,69 ----
        
  }; // enum UnmanagedType
+ 
+ #endif // CONFIG_RUNTIME_INFRA
  
  }; // namespace System.Runtime.InteropServices





reply via email to

[Prev in Thread] Current Thread [Next in Thread]