Commit 2c28b62a authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

wintrust/tests: Simplify the code and improve consistency by removing unneeded function typedefs.

parent 9012d4e7
......@@ -286,9 +286,6 @@ static void test_LoadFunctionPointers(void)
ok(ret, "WintrustLoadFunctionPointers failed: %d\n", GetLastError());
}
typedef void (WINAPI *WintrustGetRegPolicyFlagsFunc)(DWORD *);
typedef BOOL (WINAPI *WintrustSetRegPolicyFlagsFunc)(DWORD);
static void test_RegPolicyFlags(void)
{
/* Default state value 0x00023c00, which is
......@@ -302,17 +299,15 @@ static void test_RegPolicyFlags(void)
"Software\\Microsoft\\Windows\\CurrentVersion\\Wintrust\\"
"Trust Providers\\Software Publishing";
static const CHAR State[] = "State";
WintrustGetRegPolicyFlagsFunc pGetFlags;
WintrustSetRegPolicyFlagsFunc pSetFlags;
void (WINAPI *pGetFlags)(DWORD *);
BOOL (WINAPI *pSetFlags)(DWORD);
HKEY key;
LONG r;
DWORD flags1, flags2, flags3, size;
BOOL ret;
pGetFlags = (WintrustGetRegPolicyFlagsFunc)GetProcAddress(hWintrust,
"WintrustGetRegPolicyFlags");
pSetFlags = (WintrustSetRegPolicyFlagsFunc)GetProcAddress(hWintrust,
"WintrustSetRegPolicyFlags");
pGetFlags = (void*)GetProcAddress(hWintrust, "WintrustGetRegPolicyFlags");
pSetFlags = (void*)GetProcAddress(hWintrust, "WintrustSetRegPolicyFlags");
if (!pGetFlags || !pSetFlags)
skip("Policy flags functions not present\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment