wchar_t *CORBA::wstring_dup(wchar_t *Chaine);
#include <corba.h>
#include <oad_c.hh>
#include <impldef_c.hh>
wchar_t *Chaine1;
wchar_t *Chaine2;
...
Chaine1=CORBA::wstring_alloc(100);
...
Chaine2=CORBA::wstring_dup(Chaine1);
...
CORBA::wstring_free(Chaine1);
...
CORBA::string_alloc pour allouer dynamiquement une chaîne de caractères non Unicode.
CORBA::string_dup pour copier une chaîne de caractères non Unicode.
CORBA::string_free pour libérer une chaîne de caractères non Unicode.