Ignore:
Timestamp:
Dec 28, 1999, 8:16:35 PM (26 years ago)
Author:
sandervl
Message:

registry tree added + getsystempowerstatus implemented

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/stubs.cpp

    r2144 r2229  
    1 /* $Id: stubs.cpp,v 1.15 1999-12-19 19:54:31 sandervl Exp $ */
     1/* $Id: stubs.cpp,v 1.16 1999-12-28 19:16:35 sandervl Exp $ */
    22
    33/*
     
    20622062
    20632063
    2064 /*****************************************************************************
    2065  * Name      : BOOL GetSystemPowerStatus
    2066  * Purpose   : The GetSystemPowerStatus function retrieves the power status of
    2067  *             the system. The status indicates whether the system is running
    2068  *             on AC or DC power, whether the battery is currently charging,
    2069  *             and how much battery life currently remains.
    2070  * Parameters: LPSYSTEM_POWER_STATUS lpSystemPowerStatus
    2071  * Variables :
    2072  * Result    : TRUE / FALSE
    2073  * Remark    :
    2074  * Status    : UNTESTED STUB
    2075  *
    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 
    20872064
    20882065/*****************************************************************************
Note: See TracChangeset for help on using the changeset viewer.