Beispiel #1
0
 public void CreateNewInstance(string[] args)
 {
     if (args == null)
     {
         args = new string[0];
     }
     myVlcInstance = new VlcIntance(this, GetInteropDelegate <CreateNewInstance>().Invoke(args.Length, args));
 }
Beispiel #2
0
 public void ReleaseInstance(VlcIntance instance)
 {
     if (instance == IntPtr.Zero)
         return;
     GetInteropDelegate<ReleaseInstance>().Invoke(instance);
 }