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.

56 lines
1.3 KiB

  1. /*
  2. ==============================================================================
  3. Application:
  4. Microsoft Windows NT (TM) Performance Monitor
  5. File:
  6. intrline.h -- IntervalLine custom control.
  7. Written by:
  8. Mike Moskowitz 24 Mar 92.
  9. Copyright 1992, Microsoft Corporation. All Rights Reserved.
  10. ==============================================================================
  11. */
  12. //==========================================================================//
  13. // Constants //
  14. //==========================================================================//
  15. #define szILineClass TEXT("PerfILine")
  16. #define ILN_SELCHANGED (WM_USER + 0x200)
  17. //==========================================================================//
  18. // Exported Functions //
  19. //==========================================================================//
  20. BOOL ILineInitializeApplication (void) ;
  21. void ILineSetRange (HWND hWnd, int iBegin, int iEnd) ;
  22. void ILineSetStart (HWND hWnd, int iStart) ;
  23. void ILineSetStop (HWND hWnd, int iStop) ;
  24. int ILineStart (HWND hWnd) ;
  25. int ILineStop (HWND hWnd) ;
  26. int ILineXStart (HWND hWnd) ;
  27. int ILineXStop (HWND hWnd) ;
  28.