~ubuntu-branches/ubuntu/gutsy/lasso/gutsy

« back to all changes in this revision

Viewing changes to lasso/xml/disco_modify_response.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2005-09-16 02:16:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050916021649-lr5tuka6pfmmks44
Tags: 0.6.2-3ubuntu1
* debian/control: removed hardcoded php dependency, added php:Depends
  substvar
* debian/rules: added phpapiver, added substitution of php:Depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: disco_modify_response.h,v 1.5 2005/03/10 08:12:50 nclapies Exp $ 
 
2
 *
 
3
 * Lasso - A free implementation of the Liberty Alliance specifications.
 
4
 *
 
5
 * Copyright (C) 2004, 2005 Entr'ouvert
 
6
 * http://lasso.entrouvert.org
 
7
 * 
 
8
 * Authors: See AUTHORS file in top-level directory.
 
9
 *
 
10
 * This program is free software; you can redistribute it and/or modify
 
11
 * it under the terms of the GNU General Public License as published by
 
12
 * the Free Software Foundation; either version 2 of the License, or
 
13
 * (at your option) any later version.
 
14
 * 
 
15
 * This program is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 * GNU General Public License for more details.
 
19
 * 
 
20
 * You should have received a copy of the GNU General Public License
 
21
 * along with this program; if not, write to the Free Software
 
22
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
23
 */
 
24
 
 
25
#ifndef __LASSO_DISCO_MODIFY_RESPONSE_H__
 
26
#define __LASSO_DISCO_MODIFY_RESPONSE_H__
 
27
 
 
28
#ifdef __cplusplus
 
29
extern "C" {
 
30
#endif /* __cplusplus */ 
 
31
 
 
32
#include <lasso/xml/xml.h>
 
33
#include <lasso/xml/utility_status.h>
 
34
 
 
35
#define LASSO_TYPE_DISCO_MODIFY_RESPONSE (lasso_disco_modify_response_get_type())
 
36
#define LASSO_DISCO_MODIFY_RESPONSE(obj) \
 
37
        (G_TYPE_CHECK_INSTANCE_CAST((obj), LASSO_TYPE_DISCO_MODIFY_RESPONSE, \
 
38
                                    LassoDiscoModifyResponse))
 
39
#define LASSO_DISCO_MODIFY_RESPONSE_CLASS(klass) \
 
40
        (G_TYPE_CHECK_CLASS_CAST((klass), LASSO_TYPE_DISCO_MODIFY_RESPONSE, \
 
41
                                 LassoDiscoModifyResponseClass))
 
42
#define LASSO_IS_DISCO_MODIFY_RESPONSE(obj) \
 
43
        (G_TYPE_CHECK_INSTANCE_TYPE((obj), LASSO_TYPE_DISCO_MODIFY_RESPONSE))
 
44
#define LASSO_IS_DISCO_MODIFY_RESPONSE_CLASS(klass) \
 
45
        (G_TYPE_CHECK_CLASS_TYPE ((klass), LASSO_TYPE_DISCO_MODIFY_RESPONSE))
 
46
#define LASSO_DISCO_MODIFY_RESPONSE_GET_CLASS(o) \
 
47
        (G_TYPE_INSTANCE_GET_CLASS ((o), LASSO_TYPE_DISCO_MODIFY_RESPONSE, \
 
48
                                    LassoDiscoModifyResponseClass)) 
 
49
 
 
50
typedef struct _LassoDiscoModifyResponse LassoDiscoModifyResponse;
 
51
typedef struct _LassoDiscoModifyResponseClass LassoDiscoModifyResponseClass;
 
52
 
 
53
struct _LassoDiscoModifyResponse {
 
54
        LassoNode parent;
 
55
 
 
56
        /* 
 
57
         * - QNames define in strings.h (LASSO_DISCO_STATUS_CODE_* ) are expected to appear in
 
58
         *   the"code" attribute of Status elements used in Discovery Service protocol messages.
 
59
         * - The "ref" attribute on the Status element is not used in this specification,
 
60
         *   so it MUST not appear on Status elements in Discovery Service protocol messages.
 
61
         * - The contents of the "comment" attribute are not defined by this specification,
 
62
         *   but it may be used for additional descriptive text intended for human consumption
 
63
         *   (for example, to carry information that will aid debugging).
 
64
        */
 
65
        LassoUtilityStatus *Status;
 
66
 
 
67
        char *id;
 
68
        char *newEntryIDs;
 
69
};
 
70
 
 
71
struct _LassoDiscoModifyResponseClass {
 
72
        LassoNodeClass parent;
 
73
};
 
74
 
 
75
LASSO_EXPORT GType lasso_disco_modify_response_get_type            (void);
 
76
 
 
77
LASSO_EXPORT LassoDiscoModifyResponse* lasso_disco_modify_response_new(LassoUtilityStatus *status);
 
78
 
 
79
LASSO_EXPORT LassoDiscoModifyResponse* lasso_disco_modify_response_new_from_message(
 
80
        const gchar *message);
 
81
 
 
82
#ifdef __cplusplus
 
83
}
 
84
#endif /* __cplusplus */
 
85
 
 
86
#endif /* __LASSO_DISCO_MODIFY_RESPONSE_H__ */