mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-29 14:05:22 -04:00
[misc] disable Windows 7 support
* Also set rufus-next to 3.23 and fix a date typo in ChangeLog.txt
This commit is contained in:
parent
d478e3179b
commit
018718b2c8
10 changed files with 50 additions and 53 deletions
|
@ -636,7 +636,7 @@ char* GetExistingMountPoint(const char* image, int index)
|
|||
return (path[0] == 0) ? NULL: path;
|
||||
}
|
||||
|
||||
// Extract a file from a WIM image using wimgapi.dll (Windows 7 or later)
|
||||
// Extract a file from a WIM image using wimgapi.dll
|
||||
// NB: if you want progress from a WIM callback, you must run the WIM API call in its own thread
|
||||
// (which we don't do here) as it won't work otherwise. Thanks go to Erwan for figuring this out!
|
||||
BOOL WimExtractFile_API(const char* image, int index, const char* src, const char* dst, BOOL bSilent)
|
||||
|
@ -857,7 +857,7 @@ out:
|
|||
return r;
|
||||
}
|
||||
|
||||
// Apply a WIM image using wimgapi.dll (Windows 7 or later)
|
||||
// Apply a WIM image using wimgapi.dll
|
||||
// https://docs.microsoft.com/en-us/previous-versions/msdn10/dd851944(v=msdn.10)
|
||||
// To get progress, we must run this call within its own thread
|
||||
static DWORD WINAPI WimApplyImageThread(LPVOID param)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue