Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2004-03-30 08:59:20 +0400
committerMiguel de Icaza <miguel@gnome.org>2004-03-30 08:59:20 +0400
commit16b79cc3d842607275d841c50f91d21761364827 (patch)
tree14ed10c719d8d9d1d06c8bcfdcc15e02258aab00 /mcs/errors/cs0029-4.cs
parentf885e949c2860d6b8b1775de52e436f15b2da1a7 (diff)
Added new test
svn path=/trunk/mcs/; revision=24773
Diffstat (limited to 'mcs/errors/cs0029-4.cs')
-rw-r--r--mcs/errors/cs0029-4.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/cs0029-4.cs b/mcs/errors/cs0029-4.cs
new file mode 100644
index 00000000000..4141001200a
--- /dev/null
+++ b/mcs/errors/cs0029-4.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Runtime.InteropServices;
+
+namespace Tsunami {
+ public sealed class Gl {
+
+ [DllImport("libGL.so", EntryPoint="glCopyTexSubImage3D", CallingConvention="cdecl", ExactSpelling=true), SuppressUnmanagedCodeSecurity]
+ public static extern void CopyTexSubImage3D ();
+
+ }
+}
+