Ejemplo n.º 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);
Ejemplo n.º 2
0
 public DiskDirectory(string path, IOAccess access)
 {
     _path  = new UPath(PATH_FORMAT, path);
     Access = access;
 }
Ejemplo n.º 3
0
 public DiskFile(string path, IOAccess access)
 {
     _path  = path;
     Access = access;
 }