summaryrefslogtreecommitdiffstats
path: root/public/sdk/inc/dsstate.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--public/sdk/inc/dsstate.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/public/sdk/inc/dsstate.h b/public/sdk/inc/dsstate.h
new file mode 100644
index 000000000..af7067d06
--- /dev/null
+++ b/public/sdk/inc/dsstate.h
@@ -0,0 +1,27 @@
+//+-------------------------------------------------------------------------
+//
+// Microsoft Windows
+// Copyright (C) Microsoft Corporation, 1992 - 1992.
+//
+// File: DSSTATE.H
+//
+// Contents: Defines the valid DS states
+//
+// History: 04-Aug-94 AlokS Separated out from dsapi.h
+//
+//--------------------------------------------------------------------------
+
+#if !defined( __DSSTATE_H__ )
+#define __DSSTATE_H__
+
+typedef enum {
+ DS_NOCAIRO = 0,
+ DS_STANDALONE,
+ DS_WKSTA,
+ DS_SERVER,
+ DS_DC,
+ DS_INCORRECT_STATE
+} DS_MACHINE_STATE;
+
+#endif // __DSSTATE_H__
+