Windows2000/private/shell/win16/shell16/start.c
2020-09-30 17:12:32 +02:00

26 lines
549 B
C

#include "shprv.h"
// BUGBUG:: This temporary Thunk implementation is because there currently
// is no legal way to do a Restart windows from the 32 bit side...
BOOL WINAPI SHRestartWindows(DWORD dwReturn)
{
return ExitWindows(dwReturn, 0);
}
// Getting information to fill in the about box.
VOID WINAPI SHGetAboutInformation(LPWORD puSysResource, LPDWORD pcbFree)
{
if (puSysResource)
{
*puSysResource = GetFreeSystemResources(0);
}
if (pcbFree)
{
*pcbFree = GetFreeSpace(GFS_PHYSICALRAMSIZE);
}
}