1 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */ |
---|
2 | /* |
---|
3 | * liboaf: A library for accessing oafd in a nice way. |
---|
4 | * |
---|
5 | * Copyright (C) 1999, 2000 Red Hat, Inc. |
---|
6 | * Copyright (C) 2000 Eazel, Inc. |
---|
7 | * |
---|
8 | * This library is free software; you can redistribute it and/or |
---|
9 | * modify it under the terms of the GNU Library General Public |
---|
10 | * License as published by the Free Software Foundation; either |
---|
11 | * version 2 of the License, or (at your option) any later version. |
---|
12 | * |
---|
13 | * This library is distributed in the hope that it will be useful, |
---|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | * Library General Public License for more details. |
---|
17 | * |
---|
18 | * You should have received a copy of the GNU Library General Public |
---|
19 | * License along with this library; if not, write to the Free |
---|
20 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
21 | * |
---|
22 | * Author: Elliot Lee <sopwith@redhat.com> |
---|
23 | * |
---|
24 | */ |
---|
25 | |
---|
26 | #ifndef BONOBO_ACTIVATION_SERVER_INFO_H |
---|
27 | #define BONOBO_ACTIVATION_SERVER_INFO_H |
---|
28 | |
---|
29 | #include <bonobo-activation/Bonobo_Activation_types.h> |
---|
30 | |
---|
31 | G_BEGIN_DECLS |
---|
32 | |
---|
33 | Bonobo_ActivationProperty *bonobo_server_info_prop_find (Bonobo_ServerInfo *server, |
---|
34 | const char *prop_name); |
---|
35 | const char *bonobo_server_info_prop_lookup (Bonobo_ServerInfo *server, |
---|
36 | const char *prop_name, |
---|
37 | GSList *i18n_languages); |
---|
38 | void Bonobo_ActivationPropertyValue_copy (Bonobo_ActivationPropertyValue *copy, |
---|
39 | const Bonobo_ActivationPropertyValue *original); |
---|
40 | void Bonobo_ActivationProperty_copy (Bonobo_ActivationProperty *copy, |
---|
41 | const Bonobo_ActivationProperty *original); |
---|
42 | void CORBA_sequence_Bonobo_ActivationProperty_copy (CORBA_sequence_Bonobo_ActivationProperty *copy, |
---|
43 | const CORBA_sequence_Bonobo_ActivationProperty *original); |
---|
44 | void Bonobo_ServerInfo_copy (Bonobo_ServerInfo *copy, |
---|
45 | const Bonobo_ServerInfo *original); |
---|
46 | Bonobo_ServerInfo *Bonobo_ServerInfo_duplicate (const Bonobo_ServerInfo *original); |
---|
47 | Bonobo_ServerInfoList *Bonobo_ServerInfoList_duplicate (const Bonobo_ServerInfoList *original); |
---|
48 | |
---|
49 | G_END_DECLS |
---|
50 | |
---|
51 | #endif /* BONOBO_ACTIVATION_SERVER_INFO_H */ |
---|
52 | |
---|
53 | |
---|