示例#1
0
 // Debug output
 public static int lqueuePrint(IntPtr fp, L_Queue lq)
 {
     throw new NotImplementedException();
 }
示例#2
0
 // Accessors
 public static int lqueueGetCount(this L_Queue lq)
 {
     throw new NotImplementedException();
 }
示例#3
0
 // Operations to add/remove to/from a L_Queue
 public static int lqueueAdd(this L_Queue lq, IntPtr item)
 {
     throw new NotImplementedException();
 }
示例#4
0
 public static IntPtr lqueueRemove(this L_Queue lq)
 {
     throw new NotImplementedException();
 }
示例#5
0
 public static void lqueueDestroy(this L_Queue plq, int freeflag)
 {
     throw new NotImplementedException();
 }