Added new dll wintrust.dll with a stub for WinVerifyTrust().

diff --git a/dlls/wintrust/wintrust_main.c b/dlls/wintrust/wintrust_main.c
new file mode 100644
index 0000000..d602311
--- /dev/null
+++ b/dlls/wintrust/wintrust_main.c
@@ -0,0 +1,17 @@
+#include "config.h"
+
+#include "windef.h"
+#include "winerror.h"
+#include "guiddef.h"
+
+#include "debugtools.h"
+
+DEFAULT_DEBUG_CHANNEL(win32);
+
+
+LONG WinVerifyTrust( HWND hwnd, GUID *ActionID,  LPVOID ActionData )
+{
+    FIXME("(hwnd 0x%04x ActionId %p ActionData %p): stub (nothing will be verified)\n",
+            hwnd, ActionID,  ActionData);
+    return ERROR_SUCCESS;
+}