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