1 #include <windef.h> 2 #include <reactos/debug.h> 3 4 typedef PVOID PSESSION; 5 6 VOID 7 WINAPI DeleteExtractedFiles(PSESSION ps)8DeleteExtractedFiles( 9 PSESSION ps) 10 { 11 UNIMPLEMENTED; 12 } 13 14 LPCSTR 15 WINAPI GetDllVersion(void)16GetDllVersion(void) 17 { 18 /* This is what it returns on Windows XP SP3 */ 19 return "5.1.2600.5512"; 20 } 21