From: RĂ©mi Denis-Courmont Date: Sat, 21 Feb 2009 13:40:17 +0000 (+0200) Subject: Explicit native exception methods scope X-Git-Tag: 1.0.0-pre1~518 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=d1324549f23cf84d500188275032cf2a0640f65e;p=vlc Explicit native exception methods scope --- 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 () {