Esempio n. 1
0
 /// <summary>
 /// Set up-stream tally notifications. This returns FALSE if we are not currently connected to anything. That
 /// said, the moment that we do connect to something it will automatically be sent the tally state.
 /// </summary>
 /// <param name="p_instance"></param>
 /// <param name="p_tally"></param>
 /// <returns></returns>
 public static bool NDIlib_recv_set_tally(IntPtr p_instance, ref NDIlib_tally_t p_tally)
 {
     if (Is64Bit)
     {
         return(NDIlib64_recv_set_tally(p_instance, ref p_tally));
     }
     else
     {
         return(NDIlib32_recv_set_tally(p_instance, ref p_tally));
     }
 }
Esempio n. 2
0
 private static extern bool NDIlib64_recv_set_tally(IntPtr p_instance, ref NDIlib_tally_t p_tally);