[vlc-devel] commit: Explicit native exception methods scope ( Rémi Denis-Courmont )

git version control git at videolan.org
Sat Feb 21 17:15:14 CET 2009


vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sat Feb 21 15:40:17 2009 +0200| [d1324549f23cf84d500188275032cf2a0640f65e] | committer: Rémi Denis-Courmont 

Explicit native exception methods scope

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d1324549f23cf84d500188275032cf2a0640f65e
---

 bindings/cil/src/exception.cs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/bindings/cil/src/exception.cs b/bindings/cil/src/exception.cs
index 24b96fe..cc1d774 100644
--- a/bindings/cil/src/exception.cs
+++ b/bindings/cil/src/exception.cs
@@ -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 ()
         {




More information about the vlc-devel mailing list