You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
693 B
29 lines
693 B
// Copyright (c) 1997-1999 Microsoft Corporation
|
|
#ifndef __REBOOTPAGE__
|
|
#define __REBOOTPAGE__
|
|
#pragma once
|
|
|
|
#include "..\Common\WbemPageHelper.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
class RebootPage : public WBEMPageHelper
|
|
{
|
|
private:
|
|
|
|
void Init(HWND hDlg);
|
|
bool Doit(HWND hDlg);
|
|
|
|
CWbemClassObject m_OS;
|
|
|
|
public:
|
|
|
|
RebootPage(WbemServiceThread *serviceThread);
|
|
~RebootPage();
|
|
INT_PTR DoModal(HWND hDlg);
|
|
|
|
INT_PTR CALLBACK DlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
|
};
|
|
|
|
INT_PTR CALLBACK StaticRebootDlgProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
|
|
|
#endif __REBOOTPAGE__
|