home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / winnt / perfmon / intrline.h < prev    next >
Text File  |  1997-10-05  |  1KB  |  57 lines

  1. /*
  2. ==============================================================================
  3.  
  4.   Application:
  5.  
  6.             Microsoft Windows NT (TM) Performance Monitor
  7.  
  8.   File:
  9.             intrline.h -- IntervalLine custom control.
  10.  
  11.   Written by:
  12.  
  13.             Mike Moskowitz 24 Mar 92.
  14.  
  15.   Copyright 1992-1997, Microsoft Corporation. All Rights Reserved.
  16. ==============================================================================
  17. */
  18.  
  19. //==========================================================================//
  20. //                                  Constants                               //
  21. //==========================================================================//
  22.  
  23.  
  24. #define szILineClass          TEXT("PerfILine")
  25.  
  26.  
  27. #define ILN_SELCHANGED        (WM_USER + 0x200)
  28.  
  29.  
  30. //==========================================================================//
  31. //                             Exported Functions                           //
  32. //==========================================================================//
  33.  
  34.  
  35. BOOL ILineInitializeApplication (void) ;
  36.  
  37.  
  38. void ILineSetRange (HWND hWnd, int iBegin, int iEnd) ;
  39.  
  40.  
  41. void ILineSetStart (HWND hWnd, int iStart) ;
  42.  
  43.  
  44. void ILineSetStop (HWND hWnd, int iStop) ;
  45.  
  46.  
  47. int ILineStart (HWND hWnd) ;
  48.  
  49.  
  50. int ILineStop (HWND hWnd) ;
  51.  
  52.  
  53. int ILineXStart (HWND hWnd) ;
  54.  
  55.  
  56. int ILineXStop (HWND hWnd) ;
  57.