ReactOS 0.4.16-dev-942-g91fadeb
SHShouldShowWizards.cpp File Reference
#include "shelltest.h"
#include <undocshell.h>
#include <versionhelpers.h>
Include dependency graph for SHShouldShowWizards.cpp:

Go to the source code of this file.

Classes

class  CDummyClass
 

Functions

static VOID SetShowWizardsTEST (BOOL bValue)
 
 START_TEST (SHShouldShowWizards)
 

Function Documentation

◆ SetShowWizardsTEST()

static VOID SetShowWizardsTEST ( BOOL  bValue)
static

Definition at line 76 of file SHShouldShowWizards.cpp.

77{
78 DWORD dwValue = bValue;
79 SHRegSetUSValueW(L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
80 L"ShowWizardsTEST", REG_DWORD, &dwValue, sizeof(dwValue), SHREGSET_FORCE_HKCU);
81}
LONG WINAPI SHRegSetUSValueW(LPCWSTR pszSubKey, LPCWSTR pszValue, DWORD dwType, LPVOID pvData, DWORD cbData, DWORD dwFlags)
Definition: reg.c:673
unsigned long DWORD
Definition: ntddk_ex.h:95
#define L(x)
Definition: ntvdm.h:50
#define REG_DWORD
Definition: sdbapi.c:596
#define SHREGSET_FORCE_HKCU
Definition: shlwapi.h:321

Referenced by START_TEST().

◆ START_TEST()

START_TEST ( SHShouldShowWizards  )

Definition at line 83 of file SHShouldShowWizards.cpp.

84{
85 // Save old values
88 BOOL bOldWebView = state.fWebView;
89 BOOL bOldTestValue = SHRegGetBoolUSValueW(
90 L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
91 L"ShowWizardsTEST",
92 FALSE,
93 FALSE);
94
96 HRESULT hr;
97 const BOOL bVistaPlus = IsWindowsVistaOrGreater();
98
99 state.fWebView = FALSE;
102 hr = SHShouldShowWizards(dummy.GetUnknown());
103 ok_hex(hr, bVistaPlus ? S_FALSE : S_OK);
104
106 hr = SHShouldShowWizards(dummy.GetUnknown());
107 ok_hex(hr, bVistaPlus ? S_FALSE : S_OK);
108
109 state.fWebView = TRUE;
112 hr = SHShouldShowWizards(dummy.GetUnknown());
113 ok_hex(hr, S_FALSE);
114
116 hr = SHShouldShowWizards(dummy.GetUnknown());
117 ok_hex(hr, bVistaPlus ? S_FALSE : S_OK);
118
119 // Restore old values
120 state.fWebView = bOldWebView;
122 SetShowWizardsTEST(bOldTestValue);
123}
static VOID SetShowWizardsTEST(BOOL bValue)
static int state
Definition: maze.c:121
#define ok_hex(expression, result)
Definition: atltest.h:94
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
EXTERN_C HRESULT WINAPI SHShouldShowWizards(_In_ IUnknown *pUnknown)
Definition: utils.cpp:216
BOOL WINAPI SHRegGetBoolUSValueW(LPCWSTR pszSubKey, LPCWSTR pszValue, BOOL fIgnoreHKCU, BOOL fDefault)
Definition: reg.c:770
unsigned int BOOL
Definition: ntddk_ex.h:94
#define S_OK
Definition: intsafe.h:52
VOID WINAPI SHGetSetSettings(LPSHELLSTATE lpss, DWORD dwMask, BOOL bSet)
Definition: shellord.c:225
HRESULT hr
Definition: shlfolder.c:183
#define SSF_WEBVIEW
Definition: shlobj.h:1628
VERSIONHELPERAPI IsWindowsVistaOrGreater()
#define S_FALSE
Definition: winerror.h:2357