sync trunk HEAD (r50626)
[reactos.git] / dll / win32 / cabinet / stubs.c
1 #include <windows.h>
2 #include <debug.h>
3
4 typedef PVOID PSESSION;
5
6 VOID
7 WINAPI
8 DeleteExtractedFiles(
9 PSESSION ps)
10 {
11 UNIMPLEMENTED;
12 }
13
14
15 LPCSTR
16 WINAPI
17 GetDllVersion(void)
18 {
19 /* This is what it returns on Windows XP SP3 */
20 return "5.1.2600.5512";
21 }
22