Reactos
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 Graph Meters
5 * COPYRIGHT: Copyright 1999-2001 Brian Palmer <brianp@reactos.org>
6 */
7
8#pragma once
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14
15#define BRIGHT_GREEN RGB(0, 255, 0)
16#define MEDIUM_GREEN RGB(0, 190, 0)
17#define DARK_GREEN RGB(0, 130, 0)
18#define RED RGB(255, 0, 0)
19
20extern WNDPROC OldGraphWndProc;
21
22INT_PTR CALLBACK Graph_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
23
24
25#ifdef __cplusplus
26};
27#endif