Various cosmetic changes.
[wine] / dlls / wininet / urlcache.c
1 /*
2  * Wininet - Url Cache functions
3  *
4  * Copyright 2001 CodeWeavers
5  *
6  * Eric Kohl
7  *
8  */
9 #include "config.h"
10
11 #include <stdlib.h>
12 #include <string.h>
13 #include <time.h>
14
15 #include "windef.h"
16 #include "winbase.h"
17 #include "wininet.h"
18 #include "winerror.h"
19
20 #include "debugtools.h"
21 #include "internet.h"
22
23 DEFAULT_DEBUG_CHANNEL(wininet);
24
25
26 INTERNETAPI HANDLE WINAPI FindFirstUrlCacheEntryA(LPCSTR lpszUrlSearchPattern,
27  LPINTERNET_CACHE_ENTRY_INFOA lpFirstCacheEntryInfo, LPDWORD lpdwFirstCacheEntryInfoBufferSize)
28 {
29   return 0;
30 }
31
32 INTERNETAPI HANDLE WINAPI FindFirstUrlCacheEntryW(LPCWSTR lpszUrlSearchPattern,
33  LPINTERNET_CACHE_ENTRY_INFOW lpFirstCacheEntryInfo, LPDWORD lpdwFirstCacheEntryInfoBufferSize)
34 {
35   return 0;
36 }