aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libsbutil/include/rcscripts/core/services.h')
-rw-r--r--libsbutil/include/rcscripts/core/services.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/libsbutil/include/rcscripts/core/services.h b/libsbutil/include/rcscripts/core/services.h
new file mode 100644
index 0000000..4245bab
--- /dev/null
+++ b/libsbutil/include/rcscripts/core/services.h
@@ -0,0 +1,39 @@
+/*
+ * services.h
+ *
+ * Functions dealing with services.
+ *
+ * Copyright 2004-2007 Martin Schlemmer <azarah@nosferatu.za.org>
+ *
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * $Header$
+ */
+
+#ifndef __RC_SERVICES_H__
+#define __RC_SERVICES_H__
+
+typedef enum {
+ rc_service_coldplugged,
+ rc_service_starting,
+ rc_service_started,
+ rc_service_inactive,
+ rc_service_wasinactive,
+ rc_service_stopping
+} rc_service_state_t;
+
+bool rc_service_test_state (const char *service, rc_service_state_t state);
+
+#endif /* __RC_SERVICES_H__ */