]> git.sesse.net Git - vlc/blobdiff - bindings/cil/src/exception.cs
Explicit native exception methods scope
[vlc] / 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 ()
         {