Source code of Windows XP (NT5)
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.

63 lines
1.2 KiB

  1. HWND
  2. CreateGraphStatusWindow (
  3. HWND hWndGraph
  4. );
  5. BOOL
  6. GraphStatusInitializeApplication (
  7. void
  8. );
  9. LRESULT
  10. APIENTRY
  11. GraphStatusWndProc (
  12. HWND hWnd,
  13. UINT wMsg,
  14. WPARAM wParam,
  15. LPARAM lParam
  16. );
  17. void
  18. StatusDrawAvg (
  19. HDC hDC,
  20. PLINESTRUCT pLine,
  21. BOOL bForceRedraw
  22. );
  23. void
  24. StatusDrawMax (
  25. HDC hDC,
  26. PLINESTRUCT pLine,
  27. BOOL bForceRedraw
  28. );
  29. void
  30. StatusDrawMin (
  31. HDC hDC,
  32. PLINESTRUCT pLine,
  33. BOOL bForceRedraw
  34. );
  35. void
  36. StatusDrawLast (
  37. HDC hDC,
  38. PLINESTRUCT pLine,
  39. BOOL bForceRedraw
  40. );
  41. void
  42. StatusDrawTime (
  43. HDC hDC,
  44. BOOL bForceRedraw
  45. );
  46. int
  47. ValuebarHeight (
  48. HWND hWnd
  49. );
  50. void
  51. StatusTimer (
  52. HWND hWnd,
  53. BOOL bForecRedraw
  54. );