Changeset 2229 for trunk/src/kernel32/stubs.cpp
- Timestamp:
- Dec 28, 1999, 8:16:35 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/stubs.cpp
r2144 r2229 1 /* $Id: stubs.cpp,v 1.1 5 1999-12-19 19:54:31sandervl Exp $ */1 /* $Id: stubs.cpp,v 1.16 1999-12-28 19:16:35 sandervl Exp $ */ 2 2 3 3 /* … … 2062 2062 2063 2063 2064 /*****************************************************************************2065 * Name : BOOL GetSystemPowerStatus2066 * Purpose : The GetSystemPowerStatus function retrieves the power status of2067 * the system. The status indicates whether the system is running2068 * on AC or DC power, whether the battery is currently charging,2069 * and how much battery life currently remains.2070 * Parameters: LPSYSTEM_POWER_STATUS lpSystemPowerStatus2071 * Variables :2072 * Result : TRUE / FALSE2073 * Remark :2074 * Status : UNTESTED STUB2075 *2076 * Author : Patrick Haller [Mon, 1998/06/15 08:00]2077 *****************************************************************************/2078 2079 BOOL WIN32API GetSystemPowerStatus(LPSYSTEM_POWER_STATUS lpSystemPowerStatus)2080 {2081 dprintf(("Kernel32: GetSystemPowerStatus(%08xh) not implemented.\n",2082 lpSystemPowerStatus));2083 2084 return (FALSE);2085 }2086 2087 2064 2088 2065 /*****************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.