2004-02-14 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / tests / marshal5.cs
index 5a2601498273be4a901cc11a7814f121f42e7002..63512171dae4ebb28697e2f72c3884c84c2e9844 100644 (file)
@@ -3,10 +3,10 @@ using System.Runtime.InteropServices;
 
 public class Test 
 {
-       [DllImport ("libtest.so", EntryPoint="mono_test_byvalstr_gen")]
+       [DllImport ("libtest", EntryPoint="mono_test_byvalstr_gen")]
        public static extern IntPtr mono_test_byvalstr_gen();
 
-       [DllImport ("libtest.so", EntryPoint="mono_test_byvalstr_check")]
+       [DllImport ("libtest", EntryPoint="mono_test_byvalstr_check")]
        public static extern int mono_test_byvalstr_check(IntPtr data, string correctString);
        
        [StructLayout (LayoutKind.Sequential)]