Example #1
0
 public static uint CTL_CODE(DEVICE_TYPE deviceType, ushort function, IOMethod method, IOAccess access) =>
 CTL_CODE((ushort)deviceType, function, (byte)method, (byte)access);
Example #2
0
 public DiskDirectory(string path, IOAccess access)
 {
     _path  = new UPath(PATH_FORMAT, path);
     Access = access;
 }
Example #3
0
 public DiskFile(string path, IOAccess access)
 {
     _path  = path;
     Access = access;
 }