crypt32: Add a couple traces.

This commit is contained in:
Juan Lang 2007-08-07 14:56:26 -07:00 committed by Alexandre Julliard
parent bcbf5dcee3
commit c5a213a816
1 changed files with 2 additions and 0 deletions

View File

@ -71,6 +71,7 @@ void *Context_CreateDataContext(size_t contextSize)
ret = NULL;
}
}
TRACE("returning %p\n", ret);
return ret;
}
@ -96,6 +97,7 @@ void *Context_CreateLinkContext(unsigned int contextSize, void *linked, unsigned
InterlockedIncrement(&linkedBase->ref);
TRACE("%p's ref count is %d\n", context, linkContext->ref);
}
TRACE("returning %p\n", context);
return context;
}