mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
43 lines
974 B
C
43 lines
974 B
C
#ifndef _POWERCFG_H
|
|
#define _POWERCFG_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#define _INC_WINDOWS
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
#include <ntstatus.h>
|
|
#define WIN32_NO_STATUS
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winreg.h>
|
|
#include <cpl.h>
|
|
#include <tchar.h>
|
|
#include <shlobj.h>
|
|
#include <shlwapi.h>
|
|
#include <powrprof.h>
|
|
|
|
#include "resource.h"
|
|
|
|
typedef struct
|
|
{
|
|
int idIcon;
|
|
int idName;
|
|
int idDescription;
|
|
APPLET_PROC AppletProc;
|
|
} APPLET, *PAPPLET;
|
|
|
|
extern HINSTANCE hApplet;
|
|
extern GLOBAL_POWER_POLICY gGPP;
|
|
extern POWER_POLICY gPP[];
|
|
extern UINT guiIndex;
|
|
|
|
#define MAX_POWER_PAGES 32
|
|
|
|
INT_PTR CALLBACK PowerSchemesDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
INT_PTR CALLBACK AlarmsDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
INT_PTR CALLBACK AdvancedDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
INT_PTR CALLBACK HibernateDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
|
|
#endif /* _POWERCFG_H */
|