Authors: David Hammerton <david@transgaming.com>, Peter Hunnisett <peter@transgaming...
[wine.git] / dlls / crypt32 / main.c
blob78d00e770ecfd716823a4ea212bd0afa2a9101b9
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"
22 /* this function is called by Internet Explorer when it is about to verify a downloaded component */
23 BOOL WINAPI I_CryptCreateLruCache(DWORD x, DWORD y)
25 return FALSE;
28 /* these functions all have an unknown number of args */
29 BOOL WINAPI I_CryptFindLruEntryData(DWORD x)
31 return FALSE;
34 BOOL WINAPI I_CryptFlushLruCache(DWORD x)
36 return FALSE;
39 BOOL WINAPI I_CryptFreeLruCache(DWORD x)
41 return FALSE;