Moved mode setting out of .spec file into Makefile.
[wine/gsoc_dplay.git] / dlls / crypt32 / main.c
blob7577ed4dc7e4a53d7e958e647ee2b2ad457e8272
1 /*
2 * Copyright 2002 Mike McCormack for Codeweavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #include "config.h"
20 #include "winbase.h"
21 #include "wincrypt.h"
22 #include "mssip.h"
23 #include "wine/debug.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(crypt);
27 /* this function is called by Internet Explorer when it is about to verify a downloaded component */
28 BOOL WINAPI I_CryptCreateLruCache(DWORD x, DWORD y)
30 FIXME("stub!\n");
31 return FALSE;
34 /* these functions all have an unknown number of args */
35 BOOL WINAPI I_CryptFindLruEntryData(DWORD x)
37 FIXME("stub!\n");
38 return FALSE;
41 BOOL WINAPI I_CryptFlushLruCache(DWORD x)
43 FIXME("stub!\n");
44 return FALSE;
47 BOOL WINAPI I_CryptFreeLruCache(DWORD x)
49 FIXME("stub!\n");
50 return FALSE;
53 BOOL WINAPI CryptSIPRemoveProvider(GUID *pgProv)
55 FIXME("stub!\n");
56 return FALSE;
59 BOOL WINAPI CryptSIPAddProvider(SIP_ADD_NEWPROVIDER *psNewProv)
61 FIXME("stub!\n");
62 return FALSE;
65 BOOL WINAPI CryptSIPRetrieveSubjectGuid
66 (LPCWSTR FileName, HANDLE hFileIn, GUID *pgSubject)
68 FIXME("stub!\n");
69 return FALSE;
72 BOOL WINAPI CryptSIPLoad
73 (const GUID *pgSubject, DWORD dwFlags, SIP_DISPATCH_INFO *pSipDispatch)
75 FIXME("stub!\n");
76 return FALSE;
79 BOOL WINAPI CryptGetOIDFunctionValue(DWORD dwEncodingType, LPCSTR pszFuncName,
80 LPCSTR pszOID, LPCWSTR pwszValueName,
81 DWORD *pdwValueType, BYTE *pbValueData,
82 DWORD *pcbValueData)
84 FIXME("(%lx,%s,%s,%s,%p,%p,%p) stub!\n", dwEncodingType, pszFuncName, pszOID,
85 debugstr_w(pwszValueName), pdwValueType, pbValueData, pcbValueData);
86 return FALSE;
89 BOOL WINAPI CryptRegisterOIDFunction(DWORD dwEncodingType, LPCSTR pszFuncName,
90 LPCSTR pszOID, LPCWSTR pwszDll, LPCSTR pszOverrideFuncName)
92 FIXME("(%lx,%s,%s,%s,%s) stub!\n", dwEncodingType, pszFuncName, pszOID,
93 debugstr_w(pwszDll), pszOverrideFuncName);
94 return FALSE;