X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/b609f2585cc9bcbc6b2383436b59a8ce1fc84d72..6dc5d573e72af7469351413635d540a88ecc328a:/noise.c diff --git a/noise.c b/noise.c index 00719bbd..5b82fa76 100644 --- a/noise.c +++ b/noise.c @@ -10,12 +10,6 @@ #include "storage.h" /* - * GetSystemPowerStatus function. - */ -typedef BOOL(WINAPI * gsps_t) (LPSYSTEM_POWER_STATUS); -static gsps_t gsps; - -/* * This function is called once, at PuTTY startup, and will do some * seriously silly things like listing directories and getting disk * free space and a process snapshot. @@ -26,7 +20,6 @@ void noise_get_heavy(void (*func) (void *, int)) HANDLE srch; WIN32_FIND_DATA finddata; char winpath[MAX_PATH + 3]; - HMODULE mod; GetWindowsDirectory(winpath, sizeof(winpath)); strcat(winpath, "\\*"); @@ -41,12 +34,6 @@ void noise_get_heavy(void (*func) (void *, int)) read_random_seed(func); /* Update the seed immediately, in case another instance uses it. */ random_save_seed(); - - gsps = NULL; - mod = GetModuleHandle("KERNEL32"); - if (mod) { - gsps = (gsps_t) GetProcAddress(mod, "GetSystemPowerStatus"); - } } void random_save_seed(void) @@ -78,14 +65,6 @@ void noise_get_light(void (*func) (void *, int)) GetSystemTimeAdjustment(&adjust[0], &adjust[1], &rubbish); func(&adjust, sizeof(adjust)); - - /* - * Call GetSystemPowerStatus if present. - */ - if (gsps) { - if (gsps(&pwrstat)) - func(&pwrstat, sizeof(pwrstat)); - } } /*