source: trunk/src/wintrust/wintrust.cpp@ 21494

Last change on this file since 21494 was 21494, checked in by dmik, 15 years ago

Fixed broken build after r21492 by sorting out a huuuuge wagon of duplicates, wrong include order and other dirty mess.

File size: 626 bytes
Line 
1/* $Id: wintrust.cpp,v 1.1 2001-12-13 13:01:56 sandervl Exp $
2 *
3 *
4 * Project Odin Software License can be found in LICENSE.TXT
5 *
6 */
7#define CINTERFACE
8
9#include <win\windef.h>
10#include <win\winerror.h>
11#include <win\ole2.h>
12#include <misc.h>
13
14/***********************************************************************
15 * WinVerifyTrust (WINTRUST.@)
16 */
17LONG WINAPI WinVerifyTrust( HWND hwnd, GUID *ActionID, LPVOID ActionData )
18{
19 dprintf(("WinVerifyTrust: (hwnd 0x%04x ActionId %p ActionData %p): NOT IMPLEMENTED/STUB (nothing will be verified)",
20 hwnd, ActionID, ActionData));
21 return ERROR_SUCCESS;
22}
Note: See TracBrowser for help on using the repository browser.