|
EXTCONN
The EXTCONN enumeration specifies the type of external connection existing on an embedded
object. Currently, the only supported type is EXTCONN_STRONG, meaning that the
external connection is a link. This EXTCONN constant is used in the IExternalConnection::AddConnection and IExternalConnection::ReleaseConnection methods.
typedef enum tagEXTCONN
{
EXTCONN_STRONG = 0X0001,
EXTCONN_WEAK = 0X0002,
EXTCONN_CALLABLE = 0X0004
} EXTCONN;
Elements
EXTCONN_STRONG
If this value is specified, the external connection must keep the object alive
until all strong external connections are cleared through IExternalConnection::ReleaseConnection.
EXTCONN_WEAK
This value is currently not used.
EXTCONN_CALLABLE
This value is currently not used.
Related LinksSoftware for Delphi and C++ Builder developers Software for Visual Studio .NET developers Software for Visual Basic 6 developers Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps Win32 Programmer's Reference (win32.hlp) Win32 Multimedia Programmer's Reference (mmedia.hlp) Microsoft Windows Pen API Programmer's Reference (penapi.hlp) Microsoft Windows Sockets 2 Reference (sock2.hlp) Microsoft Windows Telephony API (TAPI) Programmer's Reference (sock2.hlp) Unix Manual Pages
|