windows-nt/Source/XPSP1/NT/sdktools/perfmon/timeline.h
2020-09-26 16:20:57 +08:00

43 lines
1 KiB
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//==========================================================================//
// Constants //
//==========================================================================//
#define szTLineClass TEXT("PerfTLine")
#define szTLineClassA "PerfTLine"
#define TL_INTERVAL (WM_USER + 0x301)
//==========================================================================//
// Exported Functions //
//==========================================================================//
BOOL TLineInitializeApplication (void) ;
void TLineSetRange (HWND hWnd,
int iBegin,
int iEnd) ;
void TLineSetStart (HWND hWnd,
int iStart) ;
void TLineSetStop (HWND hWnd,
int iStop) ;
int TLineStart (HWND) ;
int TLineStop (HWND) ;
void TLineRedraw (HDC hDC, PGRAPHSTRUCT pGraph) ;
extern BOOL TLineWindowUp ;
#define IsTLineWindowUp() (TLineWindowUp)