Author: benm
Date: 2005-04-30 12:20:19 -0400 (Sat, 30 Apr 2005)
New Revision: 43829

Modified:
   trunk/mono/mono/metadata/ChangeLog
   trunk/mono/mono/metadata/marshal.c
Log:
2005-04-30  Ben Maurer  <[EMAIL PROTECTED]>

        * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
        warning for the usage of `UnmanagedFunctionPointerAttribute' which
        is not supported yet.



Modified: trunk/mono/mono/metadata/ChangeLog
===================================================================
--- trunk/mono/mono/metadata/ChangeLog  2005-04-30 16:17:42 UTC (rev 43828)
+++ trunk/mono/mono/metadata/ChangeLog  2005-04-30 16:20:19 UTC (rev 43829)
@@ -1,3 +1,9 @@
+2005-04-30  Ben Maurer  <[EMAIL PROTECTED]>
+
+       * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
+       warning for the usage of `UnmanagedFunctionPointerAttribute' which
+       is not supported yet.
+
 2005-04-29 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
 
        * image.c: register assemblies loaded from data (bundles) in the loaded

Modified: trunk/mono/mono/metadata/marshal.c
===================================================================
--- trunk/mono/mono/metadata/marshal.c  2005-04-30 16:17:42 UTC (rev 43828)
+++ trunk/mono/mono/metadata/marshal.c  2005-04-30 16:20:19 UTC (rev 43829)
@@ -6147,7 +6147,7 @@
                                m.piinfo = &piinfo;
                                piinfo.piflags = (attr->call_conv << 8) | 
(attr->charset ? (attr->charset - 1) * 2 : 1) | attr->set_last_error;
 
-                               /* FIXME: modify the calling convention */
+                               g_warning ("calling convention modification not 
yet implemented for UnmanagedFunctionPointerAttribute");
                                g_assert_not_reached ();
                        }
                        if (!cinfo->cached)

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to