Esempio n. 1
0
 public Result GetHandle(out StorageDeviceHandle handle)
 {
     return(SdCardManagement.GetCurrentSdCardHandle(out handle));
 }
Esempio n. 2
0
 public static Result GetCurrentSdCardHandle(out StorageDeviceHandle handle)
 {
     // todo: StorageDevice interfaces
     handle = new StorageDeviceHandle(1, StorageDevicePortId.SdCard);
     return(Result.Success);
 }