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

GetVLCInstance must return an non-abstract typed object ...

parent a13f27ec
...@@ -149,7 +149,7 @@ namespace VideoLAN.LibVLC ...@@ -149,7 +149,7 @@ namespace VideoLAN.LibVLC
* Do not use this unless you really know what you are doing. * Do not use this unless you really know what you are doing.
* @version VLC 1.0 * @version VLC 1.0
*/ */
public SafeHandle Object public IntPtr Object
{ {
get get
{ {
......
...@@ -68,7 +68,7 @@ namespace VideoLAN.LibVLC ...@@ -68,7 +68,7 @@ namespace VideoLAN.LibVLC
[DllImport ("libvlc.dll", EntryPoint="libvlc_get_vlc_instance")] [DllImport ("libvlc.dll", EntryPoint="libvlc_get_vlc_instance")]
public static extern public static extern
SafeHandle GetVLCInstance (InstanceHandle h); IntPtr GetVLCInstance (InstanceHandle h);
/* media.c */ /* media.c */
[DllImport ("libvlc.dll", EntryPoint="libvlc_media_new")] [DllImport ("libvlc.dll", EntryPoint="libvlc_media_new")]
......
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