Commit d1324549 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Explicit native exception methods scope

parent b93beb4c
...@@ -74,15 +74,15 @@ namespace VideoLAN.LibVLC ...@@ -74,15 +74,15 @@ namespace VideoLAN.LibVLC
IntPtr message; IntPtr message;
[DllImport ("libvlc.dll", EntryPoint="libvlc_exception_init")] [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")] [DllImport ("libvlc.dll", EntryPoint="libvlc_exception_clear")]
static extern void Clear (NativeException e); private static extern void Clear (NativeException e);
/*[DllImport ("libvlc.dll", /*[DllImport ("libvlc.dll",
EntryPoint="libvlc_exception_raised")] EntryPoint="libvlc_exception_raised")]
static extern int Raised (NativeException e);*/ private static extern int Raised (NativeException e);*/
[DllImport ("libvlc.dll", [DllImport ("libvlc.dll",
EntryPoint="libvlc_exception_get_message")] EntryPoint="libvlc_exception_get_message")]
static extern IntPtr GetMessage (NativeException e); private static extern IntPtr GetMessage (NativeException e);
public NativeException () public NativeException ()
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment