Update tcl to version 8.5.13
[msysgit.git] / mingw / include / ddk / upssvc.h
blob561a163ffe22a713e3da40bd6b4b5d6c755d2bab
1 /*
2 * upssvc.h
4 * UPS service interface
6 * This file is part of the w32api package.
8 * Contributors:
9 * Created by Casper S. Hornstrup <chorns@users.sourceforge.net>
11 * THIS SOFTWARE IS NOT COPYRIGHTED
13 * This source code is offered for use in the public domain. You may
14 * use, modify or distribute it freely.
16 * This code is distributed in the hope that it will be useful but
17 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
18 * DISCLAIMED. This includes but is not limited to warranties of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 #ifndef __UPSSVC_H
24 #define __UPSSVC_H
26 #if __GNUC__ >= 3
27 #pragma GCC system_header
28 #endif
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
34 #include "ntddk.h"
36 #if defined(_APCUPS_)
37 #define UPSAPI DECLSPEC_EXPORT
38 #else
39 #define UPSAPI DECLSPEC_IMPORT
40 #endif
43 #define UPS_ONLINE 1
44 #define UPS_ONBATTERY 2
45 #define UPS_LOWBATTERY 4
46 #define UPS_NOCOMM 8
47 #define UPS_CRITICAL 16
49 UPSAPI
50 VOID
51 DDKAPI
52 UPSCancelWait(VOID);
54 UPSAPI
55 DWORD
56 DDKAPI
57 UPSGetState(VOID);
59 #define UPS_INITUNKNOWNERROR 0
60 #define UPS_INITOK 1
61 #define UPS_INITNOSUCHDRIVER 2
62 #define UPS_INITBADINTERFACE 3
63 #define UPS_INITREGISTRYERROR 4
64 #define UPS_INITCOMMOPENERROR 5
65 #define UPS_INITCOMMSETUPERROR 6
67 UPSAPI
68 DWORD
69 DDKAPI
70 UPSInit(VOID);
72 UPSAPI
73 VOID
74 DDKAPI
75 UPSStop(VOID);
77 UPSAPI
78 VOID
79 DDKAPI
80 UPSTurnOff(
81 /*IN*/ DWORD aTurnOffDelay);
83 UPSAPI
84 VOID
85 DDKAPI
86 UPSWaitForStateChange(
87 /*IN*/ DWORD aCurrentState,
88 /*IN*/ DWORD anInterval);
90 #ifdef __cplusplus
92 #endif
94 #endif /* __UPSSVC_H */