mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
35 lines
851 B
C
35 lines
851 B
C
#include "ntstatus.h"
|
|
#define WIN32_NO_STATUS
|
|
#include <windows.h>
|
|
|
|
#include <commctrl.h>
|
|
#include <cpl.h>
|
|
#include <stdio.h>
|
|
#include <tchar.h>
|
|
#include <shlobj.h>
|
|
#include <regstr.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);
|
|
|
|
/* EOF */
|