コード例 #1
0
ファイル: Queue.cs プロジェクト: bclgenki/tvn-cosine
 // Debug output
 public static int lqueuePrint(IntPtr fp, L_Queue lq)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: Queue.cs プロジェクト: bclgenki/tvn-cosine
 // Accessors
 public static int lqueueGetCount(this L_Queue lq)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: Queue.cs プロジェクト: bclgenki/tvn-cosine
 // Operations to add/remove to/from a L_Queue
 public static int lqueueAdd(this L_Queue lq, IntPtr item)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
ファイル: Queue.cs プロジェクト: bclgenki/tvn-cosine
 public static IntPtr lqueueRemove(this L_Queue lq)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
ファイル: Queue.cs プロジェクト: bclgenki/tvn-cosine
 public static void lqueueDestroy(this L_Queue plq, int freeflag)
 {
     throw new NotImplementedException();
 }