mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-20 18:05:21 -04:00
[net] add platform to user agent when checking for updates
* Also update Windows version strings for Windows 10 * Also set rufus-next to 1.4.12 * Closes #393
This commit is contained in:
parent
55a5eb07e7
commit
b2628e05d0
8 changed files with 33 additions and 23 deletions
|
@ -309,7 +309,8 @@ enum WindowsVersion {
|
|||
WINDOWS_VISTA = 0x60,
|
||||
WINDOWS_7 = 0x61,
|
||||
WINDOWS_8 = 0x62,
|
||||
WINDOWS_8_1_OR_LATER = 0x63,
|
||||
WINDOWS_8_1 = 0x63,
|
||||
WINDOWS_10 = 0x64,
|
||||
WINDOWS_MAX
|
||||
};
|
||||
|
||||
|
@ -344,7 +345,7 @@ extern int dialog_showing;
|
|||
*/
|
||||
extern void GetWindowsVersion(void);
|
||||
extern BOOL is_x64(void);
|
||||
extern const char* PrintWindowsVersion(enum WindowsVersion version);
|
||||
//extern const char* PrintWindowsVersion(enum WindowsVersion version);
|
||||
extern const char *WindowsErrorString(void);
|
||||
extern void DumpBufferHex(void *buf, size_t size);
|
||||
extern void PrintStatus(unsigned int duration, BOOL debug, int msg_id, ...);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue