]> git.sesse.net Git - vlc/commitdiff
Explicit native exception methods scope
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sat, 21 Feb 2009 13:40:17 +0000 (15:40 +0200)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sat, 21 Feb 2009 16:15:08 +0000 (18:15 +0200)
bindings/cil/src/exception.cs

index 24b96fe989b9c0dc7d18fe2ad63a6a01fd987204..cc1d7742b93832f88f876cba951d2e5a5a54bb69 100644 (file)
@@ -74,15 +74,15 @@ namespace VideoLAN.LibVLC
         IntPtr message;
 
         [DllImport ("libvlc.dll", EntryPoint="libvlc_exception_init")]
-        static extern void Init (NativeException e);
+        private static extern void Init (NativeException e);
         [DllImport ("libvlc.dll", EntryPoint="libvlc_exception_clear")]
-        static extern void Clear (NativeException e);
+        private static extern void Clear (NativeException e);
         /*[DllImport ("libvlc.dll",
                     EntryPoint="libvlc_exception_raised")]
-        static extern int Raised (NativeException e);*/
+        private static extern int Raised (NativeException e);*/
         [DllImport ("libvlc.dll",
                     EntryPoint="libvlc_exception_get_message")]
-        static extern IntPtr GetMessage (NativeException e);
+        private static extern IntPtr GetMessage (NativeException e);
 
         public NativeException ()
         {