mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
c706222f3f
Caught by Stanislav. Sorry for the oversight!
24 lines
674 B
C
24 lines
674 B
C
/*
|
|
* PROJECT: ReactOS Task Manager
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: Performance Page.
|
|
* COPYRIGHT: Copyright 1999-2001 Brian Palmer <brianp@reactos.org>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
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);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|