Juan Lang : wintrust: Add traces to a few more functions.

Alexandre Julliard julliard at winehq.org
Fri Sep 19 07:14:56 CDT 2008


Module: wine
Branch: master
Commit: 500403957d4ffc90734cbfce40a6ddcf8d799956
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=500403957d4ffc90734cbfce40a6ddcf8d799956

Author: Juan Lang <juan.lang at gmail.com>
Date:   Thu Sep 18 09:14:54 2008 -0700

wintrust: Add traces to a few more functions.

---

 dlls/wintrust/wintrust_main.c |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/dlls/wintrust/wintrust_main.c b/dlls/wintrust/wintrust_main.c
index e7b9af4..84bd2aa 100644
--- a/dlls/wintrust/wintrust_main.c
+++ b/dlls/wintrust/wintrust_main.c
@@ -607,6 +607,8 @@ BOOL WINAPI WINTRUST_AddStore(CRYPT_PROVIDER_DATA *data, HCERTSTORE store)
 {
     BOOL ret = FALSE;
 
+    TRACE("(%p, %p)\n", data, store);
+
     if (data->chStores)
         data->pahStores = WINTRUST_ReAlloc(data->pahStores,
          (data->chStores + 1) * sizeof(HCERTSTORE));
@@ -630,6 +632,8 @@ BOOL WINAPI WINTRUST_AddSgnr(CRYPT_PROVIDER_DATA *data,
 {
     BOOL ret = FALSE;
 
+    TRACE("(%p, %d, %d, %p)\n", data, fCounterSigner, idxSigner, sgnr);
+
     if (sgnr->cbStruct > sizeof(CRYPT_PROVIDER_SGNR))
     {
         SetLastError(ERROR_INVALID_PARAMETER);
@@ -681,6 +685,9 @@ BOOL WINAPI WINTRUST_AddCert(CRYPT_PROVIDER_DATA *data, DWORD idxSigner,
 {
     BOOL ret = FALSE;
 
+    TRACE("(%p, %d, %d, %d, %p)\n", data, idxSigner, fCounterSigner,
+     idxSigner, pCert2Add);
+
     if (fCounterSigner)
     {
         FIXME("unimplemented for counter signers\n");




More information about the wine-cvs mailing list