~ubuntu-branches/ubuntu/natty/orbit2/natty

« back to all changes in this revision

Viewing changes to include/orbit/orb-core/corba-context.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Waters
  • Date: 2002-03-25 17:24:03 UTC
  • Revision ID: james.westby@ubuntu.com-20020325172403-8lexv63608acfqgt
Tags: upstream-2.3.107
ImportĀ upstreamĀ versionĀ 2.3.107

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CORBA_CONTEXT_H
 
2
#define CORBA_CONTEXT_H 1
 
3
 
 
4
#include <glib.h>
 
5
 
 
6
G_BEGIN_DECLS
 
7
 
 
8
#ifdef ORBIT2_INTERNAL_API
 
9
 
 
10
struct CORBA_Context_type {
 
11
        struct ORBit_RootObject_struct parent;
 
12
 
 
13
        GHashTable    *mappings;
 
14
        GSList        *children;
 
15
 
 
16
        gchar         *the_name;
 
17
 
 
18
        CORBA_Context  parent_ctx;
 
19
};
 
20
 
 
21
void     ORBit_Context_marshal     (CORBA_Context                   ctx,
 
22
                                    const ORBit_ContextMarshalItem *mlist,
 
23
                                    CORBA_unsigned_long             nitems,
 
24
                                    GIOPSendBuffer                 *buf);
 
25
 
 
26
gboolean ORBit_Context_demarshal   (CORBA_Context   parent,
 
27
                                    CORBA_Context   initme,
 
28
                                    GIOPRecvBuffer *recv_buffer);
 
29
 
 
30
void     ORBit_Context_server_free (CORBA_Context ctx);
 
31
 
 
32
#endif /* ORBIT2_INTERNAL_API */
 
33
 
 
34
G_END_DECLS
 
35
 
 
36
#endif