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 ICOM_CINTERFACE 1
|
---|
8 | #define CINTERFACE
|
---|
9 |
|
---|
10 | #include <win\windef.h>
|
---|
11 | #include <win\winerror.h>
|
---|
12 | #include <win\ole2.h>
|
---|
13 | #include <misc.h>
|
---|
14 |
|
---|
15 | /***********************************************************************
|
---|
16 | * WinVerifyTrust (WINTRUST.@)
|
---|
17 | */
|
---|
18 | LONG WINAPI WinVerifyTrust( HWND hwnd, GUID *ActionID, LPVOID ActionData )
|
---|
19 | {
|
---|
20 | dprintf(("WinVerifyTrust: (hwnd 0x%04x ActionId %p ActionData %p): NOT IMPLEMENTED/STUB (nothing will be verified)",
|
---|
21 | hwnd, ActionID, ActionData));
|
---|
22 | return ERROR_SUCCESS;
|
---|
23 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.