Jump to content

WpQueryPowerManagement: Difference between revisions

From EDM2
Created page with "{{DISPLAYTITLE:wpQueryPowerManagement}} This method is specific to version 2.1, or higher, of the OS/2 operating system. This instance method provides the ability to query the enable or disable state of the OS/2 Power Management support. ==Syntax== _wpQueryPowerManagement(somSelf) ==Parameters== ;''somSelf'' (WPPower *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPPower. ==Returns== ;''rc'' (BOOL) -..."
 
 
Line 36: Line 36:
* [[wpQueryAutoRefresh]]
* [[wpQueryAutoRefresh]]
* [[wpQueryPowerConfirmation]]
* [[wpQueryPowerConfirmation]]
* [[wpQueryPowerManagement]]
* [[wpQueryRefreshRate]]
* [[wpQueryRefreshRate]]
* [[wpSetAutoRefresh]]
* [[wpSetAutoRefresh]]

Latest revision as of 22:41, 1 September 2025

This method is specific to version 2.1, or higher, of the OS/2 operating system.

This instance method provides the ability to query the enable or disable state of the OS/2 Power Management support.

Syntax

_wpQueryPowerManagement(somSelf)

Parameters

somSelf (WPPower *) - input
Pointer to the object on which the method is being invoked.
Points to an object of class WPPower.

Returns

rc (BOOL) - returns
Power management flag.
TRUE: The power management is enabled.
FALSE: The power management is disabled.

Example Code

Declaration:

#define INCL_WINWORKPLACE
#include <os2.h>

WPPower      *somSelf;  /* Pointer to the object on which the method is being invoked. */
BOOL         rc;        /* Power management flag. */

rc = _wpQueryPowerManagement(somSelf);

Related Methods