aboutsummaryrefslogtreecommitdiff
path: root/src/be/utilsearch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/be/utilsearch.h')
-rw-r--r--src/be/utilsearch.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/be/utilsearch.h b/src/be/utilsearch.h
index 1e0ca96d..deeab1f7 100644
--- a/src/be/utilsearch.h
+++ b/src/be/utilsearch.h
@@ -7,7 +7,13 @@
7enum UTIL_SEARCH_TYPE 7enum UTIL_SEARCH_TYPE
8{ 8{
9 UTIL_SEARCH_TYPE_NONE, 9 UTIL_SEARCH_TYPE_NONE,
10 UTIL_SEARCH_TYPE_DETECT_SHA2_SUPPORT, 10 UTIL_SEARCH_TYPE_WINDOWS_FEATURE_SEARCH,
11};
12
13enum UTIL_WINDOWS_FEATURE_SEARCH_TYPE
14{
15 UTIL_WINDOWS_FEATURE_SEARCH_TYPE_NONE,
16 UTIL_WINDOWS_FEATURE_SEARCH_TYPE_SHA2_CODE_SIGNING,
11}; 17};
12 18
13 19
@@ -18,6 +24,13 @@ typedef struct _UTIL_SEARCH
18 LPWSTR sczId; 24 LPWSTR sczId;
19 25
20 UTIL_SEARCH_TYPE Type; 26 UTIL_SEARCH_TYPE Type;
27 union
28 {
29 struct
30 {
31 UTIL_WINDOWS_FEATURE_SEARCH_TYPE type;
32 } WindowsFeatureSearch;
33 };
21} UTIL_SEARCH; 34} UTIL_SEARCH;
22 35
23typedef struct _UTIL_SEARCHES 36typedef struct _UTIL_SEARCHES