From cc62eb20f678cecc1b9b1dbd572b191347a9e907 Mon Sep 17 00:00:00 2001 From: Niclas Eklund Date: Mon, 21 Dec 2009 14:11:22 +0000 Subject: Removed 011 in documentation files --- lib/ic/doc/src/ch_c_mapping.xml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'lib/ic/doc/src/ch_c_mapping.xml') diff --git a/lib/ic/doc/src/ch_c_mapping.xml b/lib/ic/doc/src/ch_c_mapping.xml index 58b026ee78..f5a921bfd2 100644 --- a/lib/ic/doc/src/ch_c_mapping.xml +++ b/lib/ic/doc/src/ch_c_mapping.xml @@ -770,24 +770,24 @@ CORBA_Environment* oe_env)

While the erlang::binary idl type has the same C-definition as a generated sequence of octets :

binary; -\011 -\011 }; + // an erlang binary + typedef sequence binary; + + }; ]]>

it provides a way on sending trasparent data between C and Erlang.

The C-definition (ic.h) for an erlang binary is :

-\011 typedef struct { -\011 CORBA_unsigned_long _maximum; -\011 CORBA_unsigned_long _length; -\011 CORBA_octet* _buffer; -\011 } erlang_binary; /* ERLANG BINARY */ + typedef struct { + CORBA_unsigned_long _maximum; + CORBA_unsigned_long _length; + CORBA_octet* _buffer; + } erlang_binary; /* ERLANG BINARY */

The differences (between erlang::binary and ]]>) are :

-- cgit v1.2.3