Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

62 lines
924 B

/*++
Copyright (c) 1993 Microsoft Corporation
Module Name:
spgauge.h
Abstract:
Public header file for gas gauge functions in text setup.
Author:
Ted Miller (tedm) 29-July-1993
Revision History:
--*/
#ifndef _SPGAUGE_DEFN_
#define _SPGAUGE_DEFN_
PVOID
SpCreateAndDisplayGauge(
IN ULONG ItemCount,
IN ULONG GaugeWidth, OPTIONAL
IN ULONG Y,
IN PWCHAR Caption
);
VOID
SpDestroyGauge(
IN PVOID GaugeHandle
);
VOID
SpDrawGauge(
IN PVOID GaugeHandle
);
VOID
SpTickGauge(
IN PVOID GaugeHandle
);
//
// Character attribute for thermometer portion of the gas gauge.
// Because we're using spaces for the gauge, the foreground attribute
// is irrelevent.
//
// Need intense attribute or the thermometer comes out orange on some machines.
//
#define GAUGE_ATTRIBUTE (ATT_BG_YELLOW | ATT_BG_INTENSE )
#define GAUGE_HEIGHT 7
#endif // ndef _SPGAUGE_DEFN_