Module: wine Branch: master Commit: a96ef0bac881c21786957d4abbde3baa84bf00e9 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=a96ef0bac881c21786957d4a...
Author: Paul Vriens Paul.Vriens@xs4all.nl Date: Mon Aug 21 16:16:06 2006 +0200
crypt32: Print parameters and add some documentation.
---
dlls/crypt32/main.c | 38 ++++++++++++++++++++++++++++++++++++-- 1 files changed, 36 insertions(+), 2 deletions(-)
diff --git a/dlls/crypt32/main.c b/dlls/crypt32/main.c index 9b94adf..3e6b0e5 100644 --- a/dlls/crypt32/main.c +++ b/dlls/crypt32/main.c @@ -206,17 +206,51 @@ #undef CRYPT_SIPADDPROV return TRUE; }
+/*********************************************************************** + * CryptSIPRetrieveSubjectGuid (CRYPT32.@) + * + * Determine the right SIP GUID for the given file. + * + * PARAMS + * FileName [I] Filename. + * hFileIn [I] Optional handle to the file. + * pgSubject [O] The SIP's GUID. + * + * RETURNS + * Success: TRUE. pgSubject contains the SIP GUID. + * Failure: FALSE. (Look at GetLastError()). + * + */ BOOL WINAPI CryptSIPRetrieveSubjectGuid (LPCWSTR FileName, HANDLE hFileIn, GUID *pgSubject) { - FIXME("stub!\n"); + FIXME("(%s %p %p) stub!\n", wine_dbgstr_w(FileName), hFileIn, pgSubject); return FALSE; }
+/*********************************************************************** + * CryptSIPLoad (CRYPT32.@) + * + * Load the functions for the given SIP. + * + * PARAMS + * pgSubject [I] The GUID. + * dwFlags [I] Flags. + * pSipDispatch [I] The loaded functions. + * + * RETURNS + * Success: TRUE. pSipDispatch contains the functions. + * Failure: FALSE. (Look at GetLastError()). + * + * NOTES + * Testing shows that (somehow) the table of functions is cached between + * calls. + * + */ BOOL WINAPI CryptSIPLoad (const GUID *pgSubject, DWORD dwFlags, SIP_DISPATCH_INFO *pSipDispatch) { - FIXME("stub!\n"); + FIXME("(%s %ld %p) stub!\n", debugstr_guid(pgSubject), dwFlags, pSipDispatch); return FALSE; }