diff options
author | Niclas Eklund <[email protected]> | 2009-12-21 14:11:22 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-12-21 14:11:22 +0000 |
commit | cc62eb20f678cecc1b9b1dbd572b191347a9e907 (patch) | |
tree | 86676a812b969d45208c27e49e58636f34f07285 /lib/ic/doc/src/ch_c_mapping.xml | |
parent | 4fb050582fa88448f07e9981e4df3cc06237f859 (diff) | |
download | otp-cc62eb20f678cecc1b9b1dbd572b191347a9e907.tar.gz otp-cc62eb20f678cecc1b9b1dbd572b191347a9e907.tar.bz2 otp-cc62eb20f678cecc1b9b1dbd572b191347a9e907.zip |
Removed 011 in documentation files
Diffstat (limited to 'lib/ic/doc/src/ch_c_mapping.xml')
-rw-r--r-- | lib/ic/doc/src/ch_c_mapping.xml | 24 |
1 files changed, 12 insertions, 12 deletions
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) <p>While the <c>erlang::binary</c> idl type has the same C-definition as a generated sequence of octets :</p> <code type="none"><![CDATA[ -\011 module erlang -\011 { + module erlang + { -\011 .... + .... -\011 // an erlang binary -\011 typedef sequence<octet> binary; -\011 -\011 }; + // an erlang binary + typedef sequence<octet> binary; + + }; ]]></code> <p>it provides a way on sending trasparent data between C and Erlang.</p> <p>The C-definition (ic.h) for an erlang binary is :</p> <code type="none"> -\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 */ </code> <p>The differences (between <c>erlang::binary</c> and <c><![CDATA[sequence< octet >]]></c>) are :</p> <list type="bulleted"> |