We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 367ef15 commit 93732a5Copy full SHA for 93732a5
examples/wdi-simple.rc
@@ -7,8 +7,8 @@
7
#endif
8
9
VS_VERSION_INFO VERSIONINFO
10
- FILEVERSION 1,2,5,692
11
- PRODUCTVERSION 1,2,5,692
+ FILEVERSION 1,2,5,693
+ PRODUCTVERSION 1,2,5,693
12
FILEFLAGSMASK 0x17L
13
#ifdef _DEBUG
14
FILEFLAGS 0x1L
@@ -25,13 +25,13 @@ BEGIN
25
BEGIN
26
VALUE "CompanyName", "akeo.ie"
27
VALUE "FileDescription", "WDI-Simple"
28
- VALUE "FileVersion", "1.2.5.692"
+ VALUE "FileVersion", "1.2.5.693"
29
VALUE "InternalName", "WDI-Simple"
30
VALUE "LegalCopyright", "� 2010-2014 Pete Batard (LGPL v3)"
31
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/lesser.html"
32
VALUE "OriginalFilename", "wdi-simple.exe"
33
VALUE "ProductName", "WDI-Simple"
34
- VALUE "ProductVersion", "1.2.5.692"
+ VALUE "ProductVersion", "1.2.5.693"
35
VALUE "Comments", "http://libwdi.akeo.ie"
36
END
37
examples/zadic.c
@@ -64,8 +64,7 @@ int __cdecl main(int argc, char *argv[])
64
65
static int prompt_flag = 1;
66
static unsigned char iface = 0;
67
- static int vid = 0;
68
- static unsigned short pid = 0;
+ static unsigned short vid = 0, pid = 0;
69
static int verbose_flag = 3;
70
static char *desc = NULL;
71
static int use_supplied_inf_flag = 0;
examples/zadic.rc
@@ -56,8 +56,8 @@ END
56
//
57
58
59
60
61
62
63
@@ -74,13 +74,13 @@ BEGIN
74
75
76
VALUE "FileDescription", "Zadic"
77
78
VALUE "InternalName", "Zadic"
79
80
81
VALUE "OriginalFilename", "zadic.exe"
82
VALUE "ProductName", "Zadic"
83
84
85
86
examples/zadig.c
@@ -1756,7 +1756,9 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
1756
BOOL r;
1757
1758
// Disable loading system DLLs from the current directory (DLL sideloading mitigation)
1759
+#ifndef DDKBUILD // WDK doesn't know about that one
1760
SetDllDirectoryA("");
1761
+#endif
1762
1763
// Retrieve the current application directory
1764
GetCurrentDirectoryU(MAX_PATH, app_dir);
examples/zadig.h
@@ -59,7 +59,7 @@
#define FIELD_ORANGE RGB(255,240,200)
#define ARROW_GREEN RGB(92,228,65)
#define ARROW_ORANGE RGB(253,143,56)
-#define APP_VERSION "Zadig 2.2.692"
+#define APP_VERSION "Zadig 2.2.693"
// These are used to flag end users about the driver they are going to replace
enum driver_type {
examples/zadig.rc
@@ -248,8 +248,8 @@ END
248
249
250
251
- FILEVERSION 2,2,682,692
252
- PRODUCTVERSION 2,2,682,692
+ FILEVERSION 2,2,682,693
+ PRODUCTVERSION 2,2,682,693
253
254
255
@@ -266,13 +266,13 @@ BEGIN
266
267
268
VALUE "FileDescription", "Zadig"
269
- VALUE "FileVersion", "2.2.692"
+ VALUE "FileVersion", "2.2.693"
270
VALUE "InternalName", "Zadig"
271
VALUE "LegalCopyright", "� 2010-2016 Pete Batard (GPL v3)"
272
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html"
273
VALUE "OriginalFilename", "zadig.exe"
274
VALUE "ProductName", "Zadig"
275
- VALUE "ProductVersion", "2.2.692"
+ VALUE "ProductVersion", "2.2.693"
276
277
278
libwdi/libwdi.rc
@@ -50,8 +50,8 @@ END
50
51
52
53
54
55
@@ -68,13 +68,13 @@ BEGIN
VALUE "FileDescription", "libwdi: Windows Driver Installer Library"
72
VALUE "InternalName", "libwdi"
73
VALUE "OriginalFilename", "libwdi"
VALUE "ProductName", "libwdi"
libwdi/pki.c
@@ -26,6 +26,11 @@
#include <windows.h>
#include <setupapi.h>
+// CALG_SHA_256 requires XP SP3
+#if defined(NTDDI_VERSION) && (NTDDI_VERSION < NTDDI_WINXPSP3)
+#undef NTDDI_VERSION
+#define NTDDI_VERSION NTDDI_WINXPSP3
#include <wincrypt.h>
#include <stdio.h>
#include <conio.h>
0 commit comments