Overview   Namespace   Class   Index   Help 

Global Data in Global Namespace C++
in Sourcefile context.h


REMOTE_CONTEXT_CREATE
const sal_Int32 REMOTE_CONTEXT_CREATE = 1;

Summary
Create an acquired remote context. The Context is weakly held by the context administration and can be accessed later through remote_getContext() (using the same id-string).
Parameters
pIdString
A string, that uniquely describes the connection. For e.g. a socket connection,
                 host and port of the local and remote host should be in the string.
                 
pDescription
                 Description of the connection, that may brought up to the user.

pProtocol
                 The protocol, that the environment uses for
                 communicating with the remote process.
                 The format of the protocol string is : "protocolname,para1=para1value,..."
Return
0, when a context with this name already exists.
See Also
remote_getContext()
remote_Context

REMOTE_CONTEXT_DESTROY
const sal_Int32 REMOTE_CONTEXT_DESTROY = 2;


Top of Page