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
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 ()
{
......
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