2005-02-14 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mono / tests / libtest.c
index a2e40bc9b942f463ac67d69e2061c245e5f36fea..d39e3509f86e0ac68e66005a67f48c0b0440a0da 100644 (file)
@@ -26,7 +26,7 @@ static void marshal_free (void *ptr)
 #endif
 }
 
-unsigned short*
+STDCALL unsigned short*
 test_lpwstr_marshal (unsigned short* chars, long length)
 {
        int i = 0;
@@ -53,12 +53,14 @@ typedef struct {
        int c;
 } union_test_1_type;
 
-int mono_union_test_1 (union_test_1_type u1) {
+STDCALL int 
+mono_union_test_1 (union_test_1_type u1) {
        // printf ("Got values %d %d %d\n", u1.b, u1.a, u1.c);
        return u1.a + u1.b + u1.c;
 }
 
-int mono_return_int (int a) {
+STDCALL int 
+mono_return_int (int a) {
        // printf ("Got value %d\n", a);
        return a;
 }
@@ -68,12 +70,14 @@ struct ss
        int i;
 };
 
-int mono_return_int_ss (struct ss a) {
+STDCALL int 
+mono_return_int_ss (struct ss a) {
        // printf ("Got value %d\n", a.i);
        return a.i;
 }
 
-struct ss mono_return_ss (struct ss a) {
+STDCALL struct ss 
+mono_return_ss (struct ss a) {
        // printf ("Got value %d\n", a.i);
        a.i++;
        return a;
@@ -84,7 +88,8 @@ struct sc1
        char c[1];
 };
 
-struct sc1 mono_return_sc1 (struct sc1 a) {
+STDCALL struct sc1 
+mono_return_sc1 (struct sc1 a) {
        // printf ("Got value %d\n", a.c[0]);
        a.c[0]++;
        return a;
@@ -96,7 +101,8 @@ struct sc3
        char c[3];
 };
 
-struct sc3 mono_return_sc3 (struct sc3 a) {
+STDCALL struct sc3 
+mono_return_sc3 (struct sc3 a) {
        // printf ("Got values %d %d %d\n", a.c[0], a.c[1], a.c[2]);
        a.c[0]++;
        a.c[1] += 2;
@@ -109,7 +115,8 @@ struct sc5
        char c[5];
 };
 
-struct sc5 mono_return_sc5 (struct sc5 a) {
+STDCALL struct sc5 
+mono_return_sc5 (struct sc5 a) {
        // printf ("Got values %d %d %d %d %d\n", a.c[0], a.c[1], a.c[2], a.c[3], a.c[4]);
        a.c[0]++;
        a.c[1] += 2;
@@ -125,55 +132,59 @@ union su
        int i2;
 };
 
-int mono_return_int_su (union su a) {
+STDCALL int 
+mono_return_int_su (union su a) {
        // printf ("Got value %d\n", a.i1);
        return a.i1;
 }
 
-int mono_test_many_int_arguments (int a, int b, int c, int d, int e,
-                                 int f, int g, int h, int i, int j);
-short mono_test_many_short_arguments (short a, short b, short c, short d, short e,
-                                     short f, short g, short h, short i, short j);
-char mono_test_many_char_arguments (char a, char b, char c, char d, char e,
-                                   char f, char g, char h, char i, char j);
+STDCALL int 
+mono_test_many_int_arguments (int a, int b, int c, int d, int e,
+                                                         int f, int g, int h, int i, int j);
+STDCALL short 
+mono_test_many_short_arguments (short a, short b, short c, short d, short e,
+                                                               short f, short g, short h, short i, short j);
+STDCALL char 
+mono_test_many_char_arguments (char a, char b, char c, char d, char e,
+                                                          char f, char g, char h, char i, char j);
 
-int
+STDCALL int
 mono_test_many_int_arguments (int a, int b, int c, int d, int e, int f, int g, int h, int i, int j)
 {
        return a + b + c + d + e + f + g + h + i + j;
 }
 
-short
+STDCALL short
 mono_test_many_short_arguments (short a, short b, short c, short d, short e, short f, short g, short h, short i, short j)
 {
        return a + b + c + d + e + f + g + h + i + j;
 }
 
-char
+STDCALL char
 mono_test_many_byte_arguments (char a, char b, char c, char d, char e, char f, char g, char h, char i, char j)
 {
        return a + b + c + d + e + f + g + h + i + j;
 }
 
-float
+STDCALL float
 mono_test_many_float_arguments (float a, float b, float c, float d, float e, float f, float g, float h, float i, float j)
 {
        return a + b + c + d + e + f + g + h + i + j;
 }
 
-double
+STDCALL double
 mono_test_many_double_arguments (double a, double b, double c, double d, double e, double f, double g, double h, double i, double j)
 {
        return a + b + c + d + e + f + g + h + i + j;
 }
 
-double
+STDCALL double
 mono_test_split_double_arguments (double a, double b, float c, double d, double e)
 {
        return a + b + c + d + e;
 }
 
-int
+STDCALL int
 mono_test_puts_static (char *s)
 {
        // printf ("TEST %s\n", s);
@@ -182,7 +193,7 @@ mono_test_puts_static (char *s)
 
 typedef int (STDCALL *SimpleDelegate3) (int a, int b);
 
-int
+STDCALL int
 mono_invoke_delegate (SimpleDelegate3 delegate)
 {
        int res;
@@ -196,7 +207,7 @@ mono_invoke_delegate (SimpleDelegate3 delegate)
        return res;
 }
 
-int 
+STDCALL int 
 mono_test_marshal_char (short a1)
 {
        if (a1 == 'a')
@@ -205,7 +216,7 @@ mono_test_marshal_char (short a1)
        return 1;
 }
 
-void
+STDCALL void
 mono_test_marshal_char_array (gunichar2 *s)
 {
        const char m[] = "abcdef";
@@ -220,13 +231,13 @@ mono_test_marshal_char_array (gunichar2 *s)
        g_free (s2);
 }
 
-int
+STDCALL int
 mono_test_empty_pinvoke (int i)
 {
        return i;
 }
 
-int 
+STDCALL int 
 mono_test_marshal_bool_byref (int a, int *b, int c)
 {
     int res = *b;
@@ -236,7 +247,7 @@ mono_test_marshal_bool_byref (int a, int *b, int c)
        return res;
 }
 
-int 
+STDCALL int 
 mono_test_marshal_array (int *a1)
 {
        int i, sum = 0;
@@ -247,7 +258,7 @@ mono_test_marshal_array (int *a1)
        return sum;
 }
 
-int 
+STDCALL int 
 mono_test_marshal_inout_array (int *a1)
 {
        int i, sum = 0;
@@ -260,7 +271,7 @@ mono_test_marshal_inout_array (int *a1)
        return sum;
 }
 
-int 
+STDCALL int 
 mono_test_marshal_inout_nonblittable_array (gunichar2 *a1)
 {
        int i, sum = 0;
@@ -277,22 +288,25 @@ typedef struct {
        int b;
        int c;
        const char *d;
+       gunichar2 *d2;
 } simplestruct;
 
-simplestruct
+STDCALL simplestruct
 mono_test_return_vtype (int i)
 {
        simplestruct res;
+       static gunichar2 test2 [] = { 'T', 'E', 'S', 'T', '2', 0 };
 
        res.a = 0;
        res.b = 1;
        res.c = 0;
        res.d = "TEST";
+       res.d2 = test2;
 
        return res;
 }
 
-void
+STDCALL void
 mono_test_delegate_struct (void)
 {
        // printf ("TEST\n");
@@ -300,7 +314,7 @@ mono_test_delegate_struct (void)
 
 typedef char* (STDCALL *ReturnStringDelegate) (const char *s);
 
-char *
+STDCALL char *
 mono_test_return_string (ReturnStringDelegate func)
 {
        char *res;
@@ -316,7 +330,7 @@ mono_test_return_string (ReturnStringDelegate func)
 
 typedef int (STDCALL *RefVTypeDelegate) (int a, simplestruct *ss, int b);
 
-int
+STDCALL int
 mono_test_ref_vtype (int a, simplestruct *ss, int b, RefVTypeDelegate func)
 {
        if (a == 1 && b == 2 && ss->a == 0 && ss->b == 1 && ss->c == 0 &&
@@ -334,11 +348,9 @@ mono_test_ref_vtype (int a, simplestruct *ss, int b, RefVTypeDelegate func)
 
 typedef int (STDCALL *OutVTypeDelegate) (int a, simplestruct *ss, int b);
 
-int
+STDCALL int
 mono_test_marshal_out_struct (int a, simplestruct *ss, int b, OutVTypeDelegate func)
 {
-       int res;
-
        /* Check that the input pointer is ignored */
        ss->d = (gpointer)0x12345678;
 
@@ -355,13 +367,13 @@ typedef struct {
        SimpleDelegate func, func2;
 } DelegateStruct;
 
-int 
+STDCALL int 
 mono_test_marshal_delegate_struct (DelegateStruct ds)
 {
        return ds.func (ds.a) + ds.func2 (ds.a);
 }
 
-int 
+STDCALL int 
 mono_test_marshal_struct (simplestruct ss)
 {
        if (ss.a == 0 && ss.b == 1 && ss.c == 0 &&
@@ -382,7 +394,7 @@ typedef struct {
        guint64 h;
 } simplestruct2;
 
-int
+STDCALL int
 mono_test_marshal_struct2 (simplestruct2 ss)
 {
        if (ss.a == 0 && ss.b == 1 && ss.c == 0 &&
@@ -394,7 +406,7 @@ mono_test_marshal_struct2 (simplestruct2 ss)
 }
 
 /* on HP some of the struct should be on the stack and not in registers */
-int
+STDCALL int
 mono_test_marshal_struct2_2 (int i, int j, int k, simplestruct2 ss)
 {
        if (i != 10 || j != 11 || k != 12)
@@ -407,7 +419,7 @@ mono_test_marshal_struct2_2 (int i, int j, int k, simplestruct2 ss)
        return 1;
 }
 
-int
+STDCALL int
 mono_test_marshal_struct_array (simplestruct2 *ss)
 {
        if (! (ss[0].a == 0 && ss[0].b == 1 && ss[0].c == 0 &&
@@ -429,13 +441,13 @@ typedef struct long_align_struct {
        gint64 c;
 } long_align_struct;
 
-int
+STDCALL int
 mono_test_marshal_long_align_struct_array (long_align_struct *ss)
 {
        return ss[0].a + ss[0].b + ss[0].c + ss[1].a + ss[1].b + ss[1].c;
 }
 
-simplestruct2 *
+STDCALL simplestruct2 *
 mono_test_marshal_class (int i, int j, int k, simplestruct2 *ss, int l)
 {
        simplestruct2 *res;
@@ -456,7 +468,7 @@ mono_test_marshal_class (int i, int j, int k, simplestruct2 *ss, int l)
        return res;
 }
 
-int
+STDCALL int
 mono_test_marshal_byref_class (simplestruct2 **ssp)
 {
        simplestruct2 *ss = *ssp;
@@ -485,7 +497,28 @@ get_sp (void)
        return p;
 }
 
-int
+STDCALL int
+reliable_delegate (int a)
+{
+       return a;
+}
+
+/*
+ * Checks whether get_sp() works as expected. It doesn't work with gcc-2.95.3 on linux.
+ */
+static gboolean
+is_get_sp_reliable (void)
+{
+       void *sp1, *sp2;
+
+       reliable_delegate(1);
+       sp1 = get_sp();
+       reliable_delegate(1);
+       sp2 = get_sp();
+       return sp1 == sp2;
+} 
+
+STDCALL int
 mono_test_marshal_delegate (SimpleDelegate delegate)
 {
        void *sp1, *sp2;
@@ -495,14 +528,34 @@ mono_test_marshal_delegate (SimpleDelegate delegate)
        sp1 = get_sp ();
        delegate (2);
        sp2 = get_sp ();
-       g_assert (sp1 == sp2);
+       if (is_get_sp_reliable())
+               g_assert (sp1 == sp2);
 
        return delegate (2);
 }
 
+STDCALL SimpleDelegate
+mono_test_marshal_return_delegate (SimpleDelegate delegate)
+{
+       return delegate;
+}
+
 typedef simplestruct (STDCALL *SimpleDelegate2) (simplestruct ss);
 
-int
+static gboolean
+is_utf16_equals (gunichar2 *s1, const char *s2)
+{
+       char *s;
+       int res;
+
+       s = g_utf16_to_utf8 (s1, -1, NULL, NULL, NULL);
+       res = strcmp (s, s2);
+       g_free (s);
+
+       return res == 0;
+}
+
+STDCALL int
 mono_test_marshal_delegate2 (SimpleDelegate2 delegate)
 {
        simplestruct ss, res;
@@ -511,9 +564,10 @@ mono_test_marshal_delegate2 (SimpleDelegate2 delegate)
        ss.b = 1;
        ss.c = 0;
        ss.d = "TEST";
+       ss.d2 = g_utf8_to_utf16 ("TEST2", -1, NULL, NULL, NULL); 
 
        res = delegate (ss);
-       if (! (res.a && !res.b && res.c && !strcmp (res.d, "TEST-RES")))
+       if (! (res.a && !res.b && res.c && !strcmp (res.d, "TEST-RES") && is_utf16_equals (res.d2, "TEST2-RES")))
                return 1;
 
        return 0;
@@ -521,7 +575,7 @@ mono_test_marshal_delegate2 (SimpleDelegate2 delegate)
 
 typedef simplestruct* (STDCALL *SimpleDelegate4) (simplestruct *ss);
 
-int
+STDCALL int
 mono_test_marshal_delegate4 (SimpleDelegate4 delegate)
 {
        simplestruct ss;
@@ -551,7 +605,7 @@ mono_test_marshal_delegate4 (SimpleDelegate4 delegate)
 
 typedef int (STDCALL *SimpleDelegate5) (simplestruct **ss);
 
-int
+STDCALL int
 mono_test_marshal_delegate5 (SimpleDelegate5 delegate)
 {
        simplestruct ss;
@@ -575,7 +629,7 @@ mono_test_marshal_delegate5 (SimpleDelegate5 delegate)
        return 0;
 }
 
-int
+STDCALL int
 mono_test_marshal_delegate6 (SimpleDelegate5 delegate)
 {
        int res;
@@ -587,7 +641,7 @@ mono_test_marshal_delegate6 (SimpleDelegate5 delegate)
 
 typedef int (STDCALL *SimpleDelegate7) (simplestruct **ss);
 
-int
+STDCALL int
 mono_test_marshal_delegate7 (SimpleDelegate7 delegate)
 {
        int res;
@@ -608,28 +662,28 @@ mono_test_marshal_delegate7 (SimpleDelegate7 delegate)
 
 typedef int (STDCALL *SimpleDelegate8) (gunichar2 *s);
 
-int
+STDCALL int
 mono_test_marshal_delegate8 (SimpleDelegate8 delegate, gunichar2 *s)
 {
        return delegate (s);
 }
 
 typedef int (STDCALL *return_int_fnt) (int i);
-typedef int (STDCALL *SimpleDelegate9) (return_int_fnt *d);
+typedef int (STDCALL *SimpleDelegate9) (return_int_fnt d);
 
-int
+STDCALL int
 mono_test_marshal_delegate9 (SimpleDelegate9 delegate, gpointer ftn)
 {
        return delegate (ftn);
 }
 
-int
+STDCALL static int
 return_self (int i)
 {
        return i;
 }
 
-int
+STDCALL int
 mono_test_marshal_delegate10 (SimpleDelegate9 delegate)
 {
        return delegate (return_self);
@@ -637,7 +691,7 @@ mono_test_marshal_delegate10 (SimpleDelegate9 delegate)
 
 typedef int (STDCALL *PrimitiveByrefDelegate) (int *i);
 
-int
+STDCALL int
 mono_test_marshal_primitive_byref_delegate (PrimitiveByrefDelegate delegate)
 {
        int i = 1;
@@ -654,16 +708,15 @@ mono_test_marshal_primitive_byref_delegate (PrimitiveByrefDelegate delegate)
 
 typedef int (STDCALL *return_int_delegate) (int i);
 
-typedef return_int_delegate (STDCALL *ReturnDelegateDelegate) ();
+typedef return_int_delegate (STDCALL *ReturnDelegateDelegate) (void);
 
-int
+STDCALL int
 mono_test_marshal_return_delegate_delegate (ReturnDelegateDelegate d)
 {
        return (d ()) (55);
 }
 
-
-int 
+STDCALL int 
 mono_test_marshal_stringbuilder (char *s, int n)
 {
        const char m[] = "This is my message.  Isn't it nice?";
@@ -674,7 +727,7 @@ mono_test_marshal_stringbuilder (char *s, int n)
        return 0;
 }
 
-int 
+STDCALL int 
 mono_test_marshal_stringbuilder_unicode (gunichar2 *s, int n)
 {
        const char m[] = "This is my message.  Isn't it nice?";
@@ -699,13 +752,13 @@ typedef struct {
 #endif
 } EmptyStruct;
 
-int
+STDCALL int
 mono_test_marshal_empty_string_array (char **array)
 {
        return (array == NULL) ? 0 : 1;
 }
 
-int
+STDCALL int
 mono_test_marshal_string_array (char **array)
 {
        if (strcmp (array [0], "ABC"))
@@ -719,7 +772,7 @@ mono_test_marshal_string_array (char **array)
        return 0;
 }
 
-int
+STDCALL int
 mono_test_marshal_byref_string_array (char ***array)
 {
        if (*array == NULL)
@@ -735,7 +788,7 @@ mono_test_marshal_byref_string_array (char ***array)
        return 1;
 }
 
-int
+STDCALL int
 mono_test_marshal_stringbuilder_array (char **array)
 {
        if (strcmp (array [0], "ABC"))
@@ -749,7 +802,7 @@ mono_test_marshal_stringbuilder_array (char **array)
        return 0;
 }
 
-int
+STDCALL int
 mono_test_marshal_unicode_string_array (gunichar2 **array, char **array2)
 {
        GError *error = NULL;
@@ -781,7 +834,7 @@ mono_test_marshal_unicode_string_array (gunichar2 **array, char **array2)
 }
 
 /* this does not work on Redhat gcc 2.96 */
-int 
+STDCALL int 
 mono_test_empty_struct (int a, EmptyStruct es, int b)
 {
        // printf ("mono_test_empty_struct %d %d\n", a, b);
@@ -795,7 +848,7 @@ typedef struct {
        char a[100];
 } ByValStrStruct;
 
-ByValStrStruct *
+STDCALL ByValStrStruct *
 mono_test_byvalstr_gen (void)
 {
        ByValStrStruct *ret;
@@ -807,7 +860,7 @@ mono_test_byvalstr_gen (void)
        return ret;
 }
 
-int
+STDCALL int
 mono_test_byvalstr_check (ByValStrStruct* data, char* correctString)
 {
        int ret;
@@ -820,66 +873,77 @@ mono_test_byvalstr_check (ByValStrStruct* data, char* correctString)
        return (ret != 0);
 }
 
-int 
-HexDump(char *data)
+STDCALL int
+NameManglingAnsi (char *data)
 {
-       int i, res = 0;
-       char *p;
-
-       printf ("HEXDUMP DEFAULT VERSION\n");
-
-       p = data;
-       for (i=0; i < 8; ++i)
-       {
-               res += *p;
-               printf("%0x ", (int) *(p++));
-       }
-       putchar('\n');
+       return data [0] + data [1] + data [2];
+}
 
-       return res;
+STDCALL int
+NameManglingAnsiA (char *data)
+{
+       g_assert_not_reached ();
 }
 
-int 
-HexDumpA(char *data)
+STDCALL int
+NameManglingAnsiW (char *data)
 {
-       int i, res = 0;
-       char *p;
+       g_assert_not_reached ();
+}
 
-       printf ("HEXDUMP ANSI VERSION\n");
+STDCALL int
+NameManglingAnsi2A (char *data)
+{
+       return data [0] + data [1] + data [2];
+}
 
-       p = data;
-       for (i=0; i < 8; ++i)
-       {
-               res += *p;
-               printf("%0x ", (int) *(p++));
-       }
-       putchar('\n');
+STDCALL int
+NameManglingAnsi2W (char *data)
+{
+       g_assert_not_reached ();
+}
 
-       return res + 100000;
+STDCALL int
+NameManglingUnicode (char *data)
+{
+       g_assert_not_reached ();
 }
 
-int 
-HexDump1W(char *data)
+STDCALL int
+NameManglingUnicodeW (char *data)
 {
-       int i, res = 0;
-       char *p;
+       return data [0] + data [1] + data [2];
+}
 
-       printf ("HEXDUMP UNICODE VERSION\n");
+STDCALL int
+NameManglingUnicode2 (char *data)
+{
+       return data [0] + data [1] + data [2];
+}
 
-       p = data;
-       for (i=0; i < 8; ++i)
-       {
-               res += *p;
-               printf("%0x ", (int) *(p++));
-       }
-       putchar('\n');
+STDCALL int
+NameManglingAutoW (char *data)
+{
+#ifdef WIN32
+       return (data [0] + data [1] + data [2]) == 131 ? 0 : 1;
+#else
+       g_assert_not_reached ();
+#endif
+}
 
-       return res + 1000000;
+STDCALL int
+NameManglingAuto (char *data)
+{
+#ifndef WIN32
+       return (data [0] + data [1] + data [2]) == 198 ? 0 : 1;
+#else
+       g_assert_not_reached ();
+#endif
 }
 
 typedef int (STDCALL *intcharFunc)(const char*);
 
-void 
+STDCALL void 
 callFunction (intcharFunc f)
 {
        f ("ABC");
@@ -890,7 +954,7 @@ typedef struct {
         int i;
 } SimpleObj;
 
-int
+STDCALL int
 class_marshal_test0 (SimpleObj *obj1)
 {
        // printf ("class_marshal_test0 %s %d\n", obj1->str, obj1->i);
@@ -903,7 +967,7 @@ class_marshal_test0 (SimpleObj *obj1)
        return 0;
 }
 
-int
+STDCALL int
 class_marshal_test4 (SimpleObj *obj1)
 {
        if (obj1)
@@ -912,7 +976,7 @@ class_marshal_test4 (SimpleObj *obj1)
        return 0;
 }
 
-void
+STDCALL void
 class_marshal_test1 (SimpleObj **obj1)
 {
        SimpleObj *res = malloc (sizeof (SimpleObj));
@@ -923,7 +987,7 @@ class_marshal_test1 (SimpleObj **obj1)
        *obj1 = res;
 }
 
-int
+STDCALL int
 class_marshal_test2 (SimpleObj **obj1)
 {
        // printf ("class_marshal_test2 %s %d\n", (*obj1)->str, (*obj1)->i);
@@ -936,7 +1000,7 @@ class_marshal_test2 (SimpleObj **obj1)
        return 0;
 }
 
-int
+STDCALL int
 string_marshal_test0 (char *str)
 {
        if (strcmp (str, "TEST0"))
@@ -945,13 +1009,13 @@ string_marshal_test0 (char *str)
        return 0;
 }
 
-void
+STDCALL void
 string_marshal_test1 (const char **str)
 {
        *str = "TEST1";
 }
 
-int
+STDCALL int
 string_marshal_test2 (char **str)
 {
        // printf ("string_marshal_test2 %s\n", *str);
@@ -962,7 +1026,7 @@ string_marshal_test2 (char **str)
        return 0;
 }
 
-int
+STDCALL int
 string_marshal_test3 (char *str)
 {
        if (str)
@@ -976,8 +1040,8 @@ typedef struct {
        int b;
 } VectorList;
 
-
-VectorList* TestVectorList (VectorList *vl)
+STDCALL VectorList* 
+TestVectorList (VectorList *vl)
 {
        VectorList *res;
 
@@ -992,14 +1056,13 @@ VectorList* TestVectorList (VectorList *vl)
        return res;
 }
 
-
 typedef struct _OSVERSIONINFO
 { 
        int a; 
        int b; 
 } OSVERSIONINFO; 
 
-int 
+STDCALL int 
 GetVersionEx (OSVERSIONINFO *osvi)
 {
 
@@ -1011,7 +1074,7 @@ GetVersionEx (OSVERSIONINFO *osvi)
        return osvi->a + osvi->b;
 }
 
-int 
+STDCALL int 
 BugGetVersionEx (int a, int b, int c, int d, int e, int f, int g, int h, OSVERSIONINFO *osvi)
 {
 
@@ -1028,7 +1091,7 @@ typedef struct {
        double y;
 } point;
 
-int
+STDCALL int
 mono_test_marshal_point (point pt)
 {
        // printf("point %g %g\n", pt.x, pt.y);
@@ -1043,7 +1106,7 @@ typedef struct {
        double y;
 } mixed_point;
 
-int
+STDCALL int
 mono_test_marshal_mixed_point (mixed_point pt)
 {
        // printf("mixed point %d %g\n", pt.x, pt.y);
@@ -1053,7 +1116,7 @@ mono_test_marshal_mixed_point (mixed_point pt)
        return 1;
 }
 
-int
+STDCALL int
 mono_test_marshal_mixed_point_2 (mixed_point *pt)
 {
        if (pt->x != 5 || pt->y != 6.75)
@@ -1065,7 +1128,7 @@ mono_test_marshal_mixed_point_2 (mixed_point *pt)
        return 0;
 }
 
-int 
+STDCALL int 
 marshal_test_ref_bool(int i, char *b1, short *b2, int *b3)
 {
     int res = 1;
@@ -1091,7 +1154,7 @@ struct BoolStruct
     int b3;
 };
 
-int 
+STDCALL int 
 marshal_test_bool_struct(struct BoolStruct *s)
 {
     int res = 1;
@@ -1113,7 +1176,7 @@ marshal_test_bool_struct(struct BoolStruct *s)
 extern __declspec(dllimport) __stdcall void SetLastError(int x);
 #endif
 
-void
+STDCALL void
 mono_test_last_error (int err)
 {
 #ifdef WIN32
@@ -1123,7 +1186,7 @@ mono_test_last_error (int err)
 #endif
 }
 
-int
+STDCALL int
 mono_test_asany (void *ptr, int what)
 {
        switch (what) {
@@ -1173,7 +1236,7 @@ typedef struct amd64_struct1 {
        int l;
 } amd64_struct1;
 
-amd64_struct1
+STDCALL amd64_struct1
 mono_test_marshal_amd64_pass_return_struct1 (amd64_struct1 s)
 {
        s.i ++;
@@ -1189,7 +1252,7 @@ typedef struct amd64_struct2 {
        int j;
 } amd64_struct2;
 
-amd64_struct2
+STDCALL amd64_struct2
 mono_test_marshal_amd64_pass_return_struct2 (amd64_struct2 s)
 {
        s.i ++;
@@ -1202,7 +1265,7 @@ typedef struct amd64_struct3 {
        int i;
 } amd64_struct3;
 
-amd64_struct3
+STDCALL amd64_struct3
 mono_test_marshal_amd64_pass_return_struct3 (amd64_struct3 s)
 {
        s.i ++;
@@ -1214,7 +1277,7 @@ typedef struct amd64_struct4 {
        double d1, d2;
 } amd64_struct4;
 
-amd64_struct4
+STDCALL amd64_struct4
 mono_test_marshal_amd64_pass_return_struct4 (amd64_struct4 s)
 {
        s.d1 ++;
@@ -1225,7 +1288,7 @@ mono_test_marshal_amd64_pass_return_struct4 (amd64_struct4 s)
 
 static guint32 custom_res [2];
 
-void*
+STDCALL void*
 mono_test_marshal_pass_return_custom (int i, guint32 *ptr, int j)
 {
        /* ptr will be freed by CleanupNative, so make a copy */
@@ -1237,7 +1300,7 @@ mono_test_marshal_pass_return_custom (int i, guint32 *ptr, int j)
 
 typedef void *(STDCALL *PassReturnPtrDelegate) (void *ptr);
 
-int
+STDCALL int
 mono_test_marshal_pass_return_custom_in_delegate (PassReturnPtrDelegate del)
 {
        guint32 buf [2];
@@ -1260,6 +1323,38 @@ mono_test_marshal_pass_return_custom_in_delegate (PassReturnPtrDelegate del)
        return res;
 }
 
+typedef int (STDCALL *ReturnEnumDelegate) (int e);
+
+STDCALL int
+mono_test_marshal_return_enum_delegate (ReturnEnumDelegate func)
+{
+       return func (1);
+}
+
+typedef struct {
+       int a, b, c;
+       gint64 d;
+} BlittableStruct;
+       
+typedef BlittableStruct (STDCALL *SimpleDelegate10) (BlittableStruct ss);
+
+STDCALL int
+mono_test_marshal_blittable_struct_delegate (SimpleDelegate10 delegate)
+{
+       BlittableStruct ss, res;
+
+       ss.a = 1;
+       ss.b = 2;
+       ss.c = 3;
+       ss.d = 55;
+
+       res = delegate (ss);
+       if (! ((res.a == -1) && (res.b == -2) && (res.c == -3) && (res.d == -55)))
+               return 1;
+
+       return 0;
+}
+
 STDCALL int
 mono_test_stdcall_name_mangling (int a, int b, int c)
 {