예제 #1
0
파일: VFile.cs 프로젝트: bclnet/DroidNet
 public VFile_BitMsg(int _, BitMsg msg)
 {
     name     = "*unknown*";
     mode     = 1 << (int)FS.READ;
     this.msg = msg;
 }
예제 #2
0
파일: VFile.cs 프로젝트: bclnet/DroidNet
 public VFile_BitMsg(BitMsg msg)
 {
     name     = "*unknown*";
     mode     = 1 << (int)FS.WRITE;
     this.msg = msg;
 }