add missing export

svn path=/trunk/; revision=22366
This commit is contained in:
Johannes Anderwald 2006-06-15 14:28:46 +00:00
parent 1df30c5515
commit cd64dfb6ea
2 changed files with 10 additions and 1 deletions

View file

@ -303,6 +303,15 @@ BOOLEAN WINAPI WritePwrScheme(PUINT puiID, LPWSTR lpszName, LPWSTR lpszDescripti
return FALSE;
}
BOOLEAN WINAPI ValidatePowerPolicies(PGLOBAL_POWER_POLICY pGPP, PPOWER_POLICY pPP)
{
/* FIXME: See note #3 */
FIXME("(%p, %p) stub!\n", pGPP, pPP);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
FIXME("(%p, %ld, %p) not fully implemented\n", hinstDLL, fdwReason, lpvReserved);

View file

@ -30,7 +30,7 @@ ReadProcessorPwrScheme@8
ReadPwrScheme@8
SetActivePwrScheme@12
SetSuspendState@12
;ValidatePowerPolicies@8
ValidatePowerPolicies@8
WriteGlobalPwrPolicy@4
WriteProcessorPwrScheme@8
WritePwrScheme@16