mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 11:56:26 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
23 lines
268 B
C
23 lines
268 B
C
#include <windef.h>
|
|
#include <reactos/debug.h>
|
|
|
|
typedef PVOID PSESSION;
|
|
|
|
VOID
|
|
WINAPI
|
|
DeleteExtractedFiles(
|
|
PSESSION ps)
|
|
{
|
|
UNIMPLEMENTED;
|
|
}
|
|
|
|
|
|
LPCSTR
|
|
WINAPI
|
|
GetDllVersion(void)
|
|
{
|
|
/* This is what it returns on Windows XP SP3 */
|
|
return "5.1.2600.5512";
|
|
}
|
|
|