Merge pull request #1333 from joero74/ignore-missing-host
[mono.git] / mono / metadata / marshal.h
index 0c311c889336b0c290425de7a342617e9d57ab31..3ba8addbda74dfdc724f7cb4120e7bab4c0a879b 100644 (file)
@@ -160,6 +160,10 @@ typedef struct {
        MonoMethod *method;
 } ArrayAccessorWrapperInfo;
 
+typedef struct {
+       MonoClass *klass;
+} ProxyWrapperInfo;
+
 /*
  * This structure contains additional information to uniquely identify a given wrapper
  * method. It can be retrieved by mono_marshal_get_wrapper_info () for certain types
@@ -188,6 +192,8 @@ typedef struct {
                ICallWrapperInfo icall;
                /* ARRAY_ACCESSOR */
                ArrayAccessorWrapperInfo array_accessor;
+               /* PROXY_ISINST etc. */
+               ProxyWrapperInfo proxy;
        } d;
 } WrapperInfo;