mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
[vds] improve VDS error reporting
This commit is contained in:
parent
35b0ab2470
commit
0e43c5f2ea
3 changed files with 44 additions and 39 deletions
71
src/drive.c
71
src/drive.c
|
@ -438,6 +438,11 @@ out:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const char* VdsErrorString(HRESULT hr) {
|
||||||
|
SetLastError(hr);
|
||||||
|
return WindowsErrorString();
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Call on VDS to refresh the drive layout
|
* Call on VDS to refresh the drive layout
|
||||||
*/
|
*/
|
||||||
|
@ -461,49 +466,49 @@ BOOL RefreshLayout(DWORD DriveIndex)
|
||||||
hr = CoCreateInstance(&CLSID_VdsLoader, NULL, CLSCTX_LOCAL_SERVER | CLSCTX_REMOTE_SERVER,
|
hr = CoCreateInstance(&CLSID_VdsLoader, NULL, CLSCTX_LOCAL_SERVER | CLSCTX_REMOTE_SERVER,
|
||||||
&IID_IVdsServiceLoader, (void **)&pLoader);
|
&IID_IVdsServiceLoader, (void **)&pLoader);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
uprintf("Could not create VDS Loader Instance: %s", WindowsErrorString());
|
uprintf("Could not create VDS Loader Instance: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load the VDS Service
|
// Load the VDS Service
|
||||||
hr = IVdsServiceLoader_LoadService(pLoader, L"", &pService);
|
hr = IVdsServiceLoader_LoadService(pLoader, L"", &pService);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
uprintf("Could not load VDS Service: %s", WindowsErrorString());
|
uprintf("Could not load VDS Service: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for the Service to become ready if needed
|
// Wait for the Service to become ready if needed
|
||||||
hr = IVdsService_WaitForServiceReady(pService);
|
hr = IVdsService_WaitForServiceReady(pService);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
uprintf("VDS Service is not ready: %s", WindowsErrorString());
|
uprintf("VDS Service is not ready: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Query the VDS Service Providers
|
// Query the VDS Service Providers
|
||||||
hr = IVdsService_QueryProviders(pService, VDS_QUERY_SOFTWARE_PROVIDERS, &pEnum);
|
hr = IVdsService_QueryProviders(pService, VDS_QUERY_SOFTWARE_PROVIDERS, &pEnum);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
uprintf("Could not query VDS Service Providers: %s", WindowsErrorString());
|
uprintf("Could not query VDS Service Providers: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove mountpoints
|
// Remove mountpoints
|
||||||
hr = IVdsService_CleanupObsoleteMountPoints(pService);
|
hr = IVdsService_CleanupObsoleteMountPoints(pService);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
uprintf("Could not clean up VDS mountpoints: %s", WindowsErrorString());
|
uprintf("Could not clean up VDS mountpoints: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Invoke layout refresh
|
// Invoke layout refresh
|
||||||
hr = IVdsService_Refresh(pService);
|
hr = IVdsService_Refresh(pService);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
uprintf("Could not refresh VDS layout: %s", WindowsErrorString());
|
uprintf("Could not refresh VDS layout: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Force re-enum
|
// Force re-enum
|
||||||
hr = IVdsService_Reenumerate(pService);
|
hr = IVdsService_Reenumerate(pService);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
uprintf("Could not refresh VDS layout: %s", WindowsErrorString());
|
uprintf("Could not refresh VDS layout: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -544,7 +549,7 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void*
|
||||||
hr = CoCreateInstance(&CLSID_VdsLoader, NULL, CLSCTX_LOCAL_SERVER | CLSCTX_REMOTE_SERVER,
|
hr = CoCreateInstance(&CLSID_VdsLoader, NULL, CLSCTX_LOCAL_SERVER | CLSCTX_REMOTE_SERVER,
|
||||||
&IID_IVdsServiceLoader, (void**)&pLoader);
|
&IID_IVdsServiceLoader, (void**)&pLoader);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not create VDS Loader Instance: %s", WindowsErrorString());
|
suprintf("Could not create VDS Loader Instance: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -552,14 +557,14 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void*
|
||||||
hr = IVdsServiceLoader_LoadService(pLoader, L"", &pService);
|
hr = IVdsServiceLoader_LoadService(pLoader, L"", &pService);
|
||||||
IVdsServiceLoader_Release(pLoader);
|
IVdsServiceLoader_Release(pLoader);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not load VDS Service: %s", WindowsErrorString());
|
suprintf("Could not load VDS Service: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for the Service to become ready if needed
|
// Wait for the Service to become ready if needed
|
||||||
hr = IVdsService_WaitForServiceReady(pService);
|
hr = IVdsService_WaitForServiceReady(pService);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("VDS Service is not ready: %s", WindowsErrorString());
|
suprintf("VDS Service is not ready: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -567,7 +572,7 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void*
|
||||||
hr = IVdsService_QueryProviders(pService, VDS_QUERY_SOFTWARE_PROVIDERS, &pEnum);
|
hr = IVdsService_QueryProviders(pService, VDS_QUERY_SOFTWARE_PROVIDERS, &pEnum);
|
||||||
IVdsService_Release(pService);
|
IVdsService_Release(pService);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not query VDS Service Providers: %s", WindowsErrorString());
|
suprintf("Could not query VDS Service Providers: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -581,7 +586,7 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void*
|
||||||
hr = IUnknown_QueryInterface(pUnk, &IID_IVdsProvider, (void**)&pProvider);
|
hr = IUnknown_QueryInterface(pUnk, &IID_IVdsProvider, (void**)&pProvider);
|
||||||
IUnknown_Release(pUnk);
|
IUnknown_Release(pUnk);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not get VDS Provider: %s", WindowsErrorString());
|
suprintf("Could not get VDS Provider: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -589,7 +594,7 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void*
|
||||||
hr = IVdsSwProvider_QueryInterface(pProvider, &IID_IVdsSwProvider, (void**)&pSwProvider);
|
hr = IVdsSwProvider_QueryInterface(pProvider, &IID_IVdsSwProvider, (void**)&pSwProvider);
|
||||||
IVdsProvider_Release(pProvider);
|
IVdsProvider_Release(pProvider);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not get VDS Software Provider: %s", WindowsErrorString());
|
suprintf("Could not get VDS Software Provider: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -597,7 +602,7 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void*
|
||||||
hr = IVdsSwProvider_QueryPacks(pSwProvider, &pEnumPack);
|
hr = IVdsSwProvider_QueryPacks(pSwProvider, &pEnumPack);
|
||||||
IVdsSwProvider_Release(pSwProvider);
|
IVdsSwProvider_Release(pSwProvider);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not get VDS Software Provider Packs: %s", WindowsErrorString());
|
suprintf("Could not get VDS Software Provider Packs: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -610,7 +615,7 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void*
|
||||||
hr = IUnknown_QueryInterface(pPackUnk, &IID_IVdsPack, (void**)&pPack);
|
hr = IUnknown_QueryInterface(pPackUnk, &IID_IVdsPack, (void**)&pPack);
|
||||||
IUnknown_Release(pPackUnk);
|
IUnknown_Release(pPackUnk);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not query VDS Software Provider Pack: %s", WindowsErrorString());
|
suprintf("Could not query VDS Software Provider Pack: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -618,7 +623,7 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void*
|
||||||
hr = IVdsPack_QueryDisks(pPack, &pEnumDisk);
|
hr = IVdsPack_QueryDisks(pPack, &pEnumDisk);
|
||||||
IVdsPack_Release(pPack);
|
IVdsPack_Release(pPack);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not query VDS disks: %s", WindowsErrorString());
|
suprintf("Could not query VDS disks: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -631,7 +636,7 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void*
|
||||||
hr = IUnknown_QueryInterface(pDiskUnk, &IID_IVdsDisk, (void**)&pDisk);
|
hr = IUnknown_QueryInterface(pDiskUnk, &IID_IVdsDisk, (void**)&pDisk);
|
||||||
IUnknown_Release(pDiskUnk);
|
IUnknown_Release(pDiskUnk);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not query VDS Disk Interface: %s", WindowsErrorString());
|
suprintf("Could not query VDS Disk Interface: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -639,7 +644,7 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void*
|
||||||
hr = IVdsDisk_GetProperties(pDisk, &prop);
|
hr = IVdsDisk_GetProperties(pDisk, &prop);
|
||||||
if ((hr != S_OK) && (hr != VDS_S_PROPERTIES_INCOMPLETE)) {
|
if ((hr != S_OK) && (hr != VDS_S_PROPERTIES_INCOMPLETE)) {
|
||||||
IVdsDisk_Release(pDisk);
|
IVdsDisk_Release(pDisk);
|
||||||
suprintf("Could not query VDS Disk Properties: %s", WindowsErrorString());
|
suprintf("Could not query VDS Disk Properties: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -655,7 +660,7 @@ static BOOL GetVdsDiskInterface(DWORD DriveIndex, const IID* InterfaceIID, void*
|
||||||
hr = IVdsDisk_QueryInterface(pDisk, InterfaceIID, pInterfaceInstance);
|
hr = IVdsDisk_QueryInterface(pDisk, InterfaceIID, pInterfaceInstance);
|
||||||
IVdsDisk_Release(pDisk);
|
IVdsDisk_Release(pDisk);
|
||||||
if (hr != S_OK)
|
if (hr != S_OK)
|
||||||
suprintf("Could not access the requested Disk interface: %s", WindowsErrorString());
|
suprintf("Could not access the requested Disk interface: %s", VdsErrorString(hr));
|
||||||
|
|
||||||
// With the interface found, we should be able to return
|
// With the interface found, we should be able to return
|
||||||
break;
|
break;
|
||||||
|
@ -700,7 +705,7 @@ BOOL DeletePartition(DWORD DriveIndex, ULONGLONG PartitionOffset, BOOL bSilent)
|
||||||
prop_array[i].ullOffset, SizeToHumanReadable(prop_array[i].ullSize, FALSE, FALSE));
|
prop_array[i].ullOffset, SizeToHumanReadable(prop_array[i].ullSize, FALSE, FALSE));
|
||||||
hr = IVdsAdvancedDisk_DeletePartition(pAdvancedDisk, prop_array[i].ullOffset, TRUE, TRUE);
|
hr = IVdsAdvancedDisk_DeletePartition(pAdvancedDisk, prop_array[i].ullOffset, TRUE, TRUE);
|
||||||
if (hr != S_OK)
|
if (hr != S_OK)
|
||||||
suprintf("Could not delete partition: %s", WindowsErrorString());
|
suprintf("Could not delete partition: %s", VdsErrorString(hr));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
suprintf("No partition to delete on disk");
|
suprintf("No partition to delete on disk");
|
||||||
|
@ -738,7 +743,7 @@ BOOL ListVdsVolumes(BOOL bSilent)
|
||||||
hr = CoCreateInstance(&CLSID_VdsLoader, NULL, CLSCTX_LOCAL_SERVER | CLSCTX_REMOTE_SERVER,
|
hr = CoCreateInstance(&CLSID_VdsLoader, NULL, CLSCTX_LOCAL_SERVER | CLSCTX_REMOTE_SERVER,
|
||||||
&IID_IVdsServiceLoader, (void**)&pLoader);
|
&IID_IVdsServiceLoader, (void**)&pLoader);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not create VDS Loader Instance: %s", WindowsErrorString());
|
suprintf("Could not create VDS Loader Instance: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -746,14 +751,14 @@ BOOL ListVdsVolumes(BOOL bSilent)
|
||||||
hr = IVdsServiceLoader_LoadService(pLoader, L"", &pService);
|
hr = IVdsServiceLoader_LoadService(pLoader, L"", &pService);
|
||||||
IVdsServiceLoader_Release(pLoader);
|
IVdsServiceLoader_Release(pLoader);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not load VDS Service: %s", WindowsErrorString());
|
suprintf("Could not load VDS Service: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for the Service to become ready if needed
|
// Wait for the Service to become ready if needed
|
||||||
hr = IVdsService_WaitForServiceReady(pService);
|
hr = IVdsService_WaitForServiceReady(pService);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("VDS Service is not ready: %s", WindowsErrorString());
|
suprintf("VDS Service is not ready: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -761,7 +766,7 @@ BOOL ListVdsVolumes(BOOL bSilent)
|
||||||
hr = IVdsService_QueryProviders(pService, VDS_QUERY_SOFTWARE_PROVIDERS, &pEnum);
|
hr = IVdsService_QueryProviders(pService, VDS_QUERY_SOFTWARE_PROVIDERS, &pEnum);
|
||||||
IVdsService_Release(pService);
|
IVdsService_Release(pService);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not query VDS Service Providers: %s", WindowsErrorString());
|
suprintf("Could not query VDS Service Providers: %s", VdsErrorString(hr));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -775,7 +780,7 @@ BOOL ListVdsVolumes(BOOL bSilent)
|
||||||
hr = IUnknown_QueryInterface(pUnk, &IID_IVdsProvider, (void**)&pProvider);
|
hr = IUnknown_QueryInterface(pUnk, &IID_IVdsProvider, (void**)&pProvider);
|
||||||
IUnknown_Release(pUnk);
|
IUnknown_Release(pUnk);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not get VDS Provider: %s", WindowsErrorString());
|
suprintf("Could not get VDS Provider: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -783,7 +788,7 @@ BOOL ListVdsVolumes(BOOL bSilent)
|
||||||
hr = IVdsSwProvider_QueryInterface(pProvider, &IID_IVdsSwProvider, (void**)&pSwProvider);
|
hr = IVdsSwProvider_QueryInterface(pProvider, &IID_IVdsSwProvider, (void**)&pSwProvider);
|
||||||
IVdsProvider_Release(pProvider);
|
IVdsProvider_Release(pProvider);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not get VDS Software Provider: %s", WindowsErrorString());
|
suprintf("Could not get VDS Software Provider: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -791,7 +796,7 @@ BOOL ListVdsVolumes(BOOL bSilent)
|
||||||
hr = IVdsSwProvider_QueryPacks(pSwProvider, &pEnumPack);
|
hr = IVdsSwProvider_QueryPacks(pSwProvider, &pEnumPack);
|
||||||
IVdsSwProvider_Release(pSwProvider);
|
IVdsSwProvider_Release(pSwProvider);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not get VDS Software Provider Packs: %s", WindowsErrorString());
|
suprintf("Could not get VDS Software Provider Packs: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -804,14 +809,14 @@ BOOL ListVdsVolumes(BOOL bSilent)
|
||||||
hr = IUnknown_QueryInterface(pPackUnk, &IID_IVdsPack, (void**)&pPack);
|
hr = IUnknown_QueryInterface(pPackUnk, &IID_IVdsPack, (void**)&pPack);
|
||||||
IUnknown_Release(pPackUnk);
|
IUnknown_Release(pPackUnk);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not query VDS Software Provider Pack: %s", WindowsErrorString());
|
suprintf("Could not query VDS Software Provider Pack: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Use the pack interface to access the disks
|
// Use the pack interface to access the disks
|
||||||
hr = IVdsPack_QueryVolumes(pPack, &pEnumVolume);
|
hr = IVdsPack_QueryVolumes(pPack, &pEnumVolume);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not query VDS volumes: %s", WindowsErrorString());
|
suprintf("Could not query VDS volumes: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -826,14 +831,14 @@ BOOL ListVdsVolumes(BOOL bSilent)
|
||||||
// Get the volume interface.
|
// Get the volume interface.
|
||||||
hr = IUnknown_QueryInterface(pVolumeUnk, &IID_IVdsVolume, (void**)&pVolume);
|
hr = IUnknown_QueryInterface(pVolumeUnk, &IID_IVdsVolume, (void**)&pVolume);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not query VDS Volume Interface: %s", WindowsErrorString());
|
suprintf("Could not query VDS Volume Interface: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the volume properties
|
// Get the volume properties
|
||||||
hr = IVdsVolume_GetProperties(pVolume, &prop);
|
hr = IVdsVolume_GetProperties(pVolume, &prop);
|
||||||
if ((hr != S_OK) && (hr != VDS_S_PROPERTIES_INCOMPLETE)) {
|
if ((hr != S_OK) && (hr != VDS_S_PROPERTIES_INCOMPLETE)) {
|
||||||
suprintf("Could not query VDS Volume Properties: %s", WindowsErrorString());
|
suprintf("Could not query VDS Volume Properties: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -844,14 +849,14 @@ BOOL ListVdsVolumes(BOOL bSilent)
|
||||||
// Get the volume MF3 interface.
|
// Get the volume MF3 interface.
|
||||||
hr = IUnknown_QueryInterface(pVolumeUnk, &IID_IVdsVolumeMF3, (void**)&pVolumeMF3);
|
hr = IUnknown_QueryInterface(pVolumeUnk, &IID_IVdsVolumeMF3, (void**)&pVolumeMF3);
|
||||||
if (hr != S_OK) {
|
if (hr != S_OK) {
|
||||||
suprintf("Could not query VDS VolumeMF3 Interface: %s", WindowsErrorString());
|
suprintf("Could not query VDS VolumeMF3 Interface: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the volume properties
|
// Get the volume properties
|
||||||
hr = IVdsVolumeMF3_QueryVolumeGuidPathnames(pVolumeMF3, &wszPathArray, &ulNumberOfPaths);
|
hr = IVdsVolumeMF3_QueryVolumeGuidPathnames(pVolumeMF3, &wszPathArray, &ulNumberOfPaths);
|
||||||
if ((hr != S_OK) && (hr != VDS_S_PROPERTIES_INCOMPLETE)) {
|
if ((hr != S_OK) && (hr != VDS_S_PROPERTIES_INCOMPLETE)) {
|
||||||
suprintf("Could not query VDS VolumeMF3 GUID PathNames: %s", WindowsErrorString());
|
suprintf("Could not query VDS VolumeMF3 GUID PathNames: %s", VdsErrorString(hr));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
hr = S_OK;
|
hr = S_OK;
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
|
|
||||||
#define FILE_FLOPPY_DISKETTE 0x00000004
|
#define FILE_FLOPPY_DISKETTE 0x00000004
|
||||||
|
|
||||||
#define VDS_SET_ERROR(hr) do { if (hr != S_OK) { hr = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_GEN_FAILURE; FormatStatus = hr; SetLastError(hr); } } while(0)
|
#define VDS_SET_ERROR(hr) do { if (hr != S_OK) { SetLastError(hr); FormatStatus = ERROR_SEVERITY_ERROR|FAC(FACILITY_STORAGE)|ERROR_GEN_FAILURE; } } while(0)
|
||||||
|
|
||||||
#if !defined(__MINGW32__)
|
#if !defined(__MINGW32__)
|
||||||
typedef enum _FSINFOCLASS {
|
typedef enum _FSINFOCLASS {
|
||||||
|
|
10
src/rufus.rc
10
src/rufus.rc
|
@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||||
IDD_DIALOG DIALOGEX 12, 12, 232, 326
|
IDD_DIALOG DIALOGEX 12, 12, 232, 326
|
||||||
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
EXSTYLE WS_EX_ACCEPTFILES
|
EXSTYLE WS_EX_ACCEPTFILES
|
||||||
CAPTION "Rufus 3.13.1724"
|
CAPTION "Rufus 3.13.1725"
|
||||||
FONT 9, "Segoe UI Symbol", 400, 0, 0x0
|
FONT 9, "Segoe UI Symbol", 400, 0, 0x0
|
||||||
BEGIN
|
BEGIN
|
||||||
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
|
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
|
||||||
|
@ -395,8 +395,8 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 3,13,1724,0
|
FILEVERSION 3,13,1725,0
|
||||||
PRODUCTVERSION 3,13,1724,0
|
PRODUCTVERSION 3,13,1725,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -414,13 +414,13 @@ BEGIN
|
||||||
VALUE "Comments", "https://rufus.ie"
|
VALUE "Comments", "https://rufus.ie"
|
||||||
VALUE "CompanyName", "Akeo Consulting"
|
VALUE "CompanyName", "Akeo Consulting"
|
||||||
VALUE "FileDescription", "Rufus"
|
VALUE "FileDescription", "Rufus"
|
||||||
VALUE "FileVersion", "3.13.1724"
|
VALUE "FileVersion", "3.13.1725"
|
||||||
VALUE "InternalName", "Rufus"
|
VALUE "InternalName", "Rufus"
|
||||||
VALUE "LegalCopyright", "© 2011-2020 Pete Batard (GPL v3)"
|
VALUE "LegalCopyright", "© 2011-2020 Pete Batard (GPL v3)"
|
||||||
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
|
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
|
||||||
VALUE "OriginalFilename", "rufus-3.13.exe"
|
VALUE "OriginalFilename", "rufus-3.13.exe"
|
||||||
VALUE "ProductName", "Rufus"
|
VALUE "ProductName", "Rufus"
|
||||||
VALUE "ProductVersion", "3.13.1724"
|
VALUE "ProductVersion", "3.13.1725"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
Loading…
Reference in a new issue