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.

42 lines
1.0 KiB

  1. //==========================================================================//
  2. // Constants //
  3. //==========================================================================//
  4. #define szTLineClass TEXT("PerfTLine")
  5. #define szTLineClassA "PerfTLine"
  6. #define TL_INTERVAL (WM_USER + 0x301)
  7. //==========================================================================//
  8. // Exported Functions //
  9. //==========================================================================//
  10. BOOL TLineInitializeApplication (void) ;
  11. void TLineSetRange (HWND hWnd,
  12. int iBegin,
  13. int iEnd) ;
  14. void TLineSetStart (HWND hWnd,
  15. int iStart) ;
  16. void TLineSetStop (HWND hWnd,
  17. int iStop) ;
  18. int TLineStart (HWND) ;
  19. int TLineStop (HWND) ;
  20. void TLineRedraw (HDC hDC, PGRAPHSTRUCT pGraph) ;
  21. extern BOOL TLineWindowUp ;
  22. #define IsTLineWindowUp() (TLineWindowUp)
  23.