56 lines
2.0 KiB
C
56 lines
2.0 KiB
C
![]() |
/* 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
|
||
|
|