Now using the NT CD interface.
[wine] / dlls / wintrust / wintrust_main.c
1 #include "config.h"
2
3 #include "windef.h"
4 #include "winerror.h"
5 #include "guiddef.h"
6
7 #include "debugtools.h"
8
9 DEFAULT_DEBUG_CHANNEL(win32);
10
11 /***********************************************************************
12  *              WinVerifyTrust (WINTRUST.@)
13  */
14 LONG WINAPI WinVerifyTrust( HWND hwnd, GUID *ActionID,  LPVOID ActionData )
15 {
16     FIXME("(hwnd 0x%04x ActionId %p ActionData %p): stub (nothing will be verified)\n",
17             hwnd, ActionID,  ActionData);
18     return ERROR_SUCCESS;
19 }