summaryrefslogtreecommitdiff
path: root/src/msm/props.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/msm/props.h')
-rw-r--r--src/msm/props.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/msm/props.h b/src/msm/props.h
new file mode 100644
index 00000000..92a05f94
--- /dev/null
+++ b/src/msm/props.h
@@ -0,0 +1,55 @@
+/* msm SmProp utils */
+
+/*
+ * Copyright (C) 2001 Havoc Pennington
+ *
+ * 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; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ */
+
+#ifndef MSM_PROPS_H
+#define MSM_PROPS_H
+
+#include <glib.h>
+#include <X11/ICE/ICElib.h>
+#include <X11/SM/SMlib.h>
+
+GList* proplist_find_link_by_name (GList *list,
+ const char *name);
+SmProp* proplist_find_by_name (GList *list,
+ const char *name);
+gboolean proplist_find_card8 (GList *list,
+ const char *name,
+ int *result);
+gboolean proplist_find_string (GList *list,
+ const char *name,
+ char **result);
+gboolean proplist_find_vector (GList *list,
+ const char *name,
+ int *argcp,
+ char ***argvp);
+
+gboolean smprop_get_card8 (SmProp *prop,
+ int *result);
+gboolean smprop_get_string (SmProp *prop,
+ char **result);
+gboolean smprop_get_vector (SmProp *prop,
+ int *argcp,
+ char ***argvp);
+
+SmProp* smprop_copy (SmProp *prop);
+
+#endif
+