2004-01-10 02:14:13 +00:00
|
|
|
/*
|
2021-12-16 01:25:32 +00:00
|
|
|
* PROJECT: ReactOS Task Manager
|
2023-06-15 17:45:15 +00:00
|
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
2021-12-16 01:25:32 +00:00
|
|
|
* PURPOSE: Performance Page.
|
|
|
|
* COPYRIGHT: Copyright 1999-2001 Brian Palmer <brianp@reactos.org>
|
2004-01-10 02:14:13 +00:00
|
|
|
*/
|
2005-05-08 04:07:56 +00:00
|
|
|
|
2010-02-26 11:43:19 +00:00
|
|
|
#pragma once
|
2004-01-10 02:14:13 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-05-15 19:51:29 +00:00
|
|
|
extern HWND hPerformancePage; /* Performance Property Page */
|
|
|
|
INT_PTR CALLBACK PerformancePageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
|
|
|
void RefreshPerformancePage(void);
|
|
|
|
void PerformancePage_OnViewShowKernelTimes(void);
|
|
|
|
void PerformancePage_OnViewCPUHistoryOneGraphAll(void);
|
|
|
|
void PerformancePage_OnViewCPUHistoryOneGraphPerCPU(void);
|
2004-01-10 02:14:13 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
};
|
|
|
|
#endif
|