From d1324549f23cf84d500188275032cf2a0640f65e Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 21 Feb 2009 15:40:17 +0200 Subject: [PATCH] Explicit native exception methods scope --- bindings/cil/src/exception.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bindings/cil/src/exception.cs b/bindings/cil/src/exception.cs index 24b96fe989..cc1d7742b9 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 () { -- 2.39.5