1 /*
2  * PROJECT:     ReactOS Task Manager
3  * LICENSE:     LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
4  * PURPOSE:     Performance Page.
5  * COPYRIGHT:   Copyright 1999-2001 Brian Palmer <brianp@reactos.org>
6  */
7 
8 #pragma once
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 extern HWND hPerformancePage;   /* Performance Property Page */
15 INT_PTR CALLBACK PerformancePageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
16 
17 void RefreshPerformancePage(void);
18 void PerformancePage_OnViewShowKernelTimes(void);
19 void PerformancePage_OnViewCPUHistoryOneGraphAll(void);
20 void PerformancePage_OnViewCPUHistoryOneGraphPerCPU(void);
21 
22 #ifdef __cplusplus
23 };
24 #endif
25