예제 #1
0
 // This will allow you to determine the current queue depth for all of the frame sources at any time.
 public static void recv_get_queue(IntPtr p_instance, ref recv_queue_t p_total)
 {
     if (IntPtr.Size == 8)
     {
         UnsafeNativeMethods.recv_get_queue_64(p_instance, ref p_total);
     }
     else
     {
         UnsafeNativeMethods.recv_get_queue_32(p_instance, ref p_total);
     }
 }
예제 #2
0
 internal static extern void recv_get_queue_32(IntPtr p_instance, ref recv_queue_t p_total);
예제 #3
0
 public static extern void recv_get_queue(IntPtr p_instance, ref recv_queue_t p_total);