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

Last change on this file since 21916 was 21916, checked in by dmik, 14 years ago

Merge branch gcc-kmk to trunk.

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.