How to Use structs in COM interfaces when Automation
compatibility is not an issue?



How to Use structs in COM interfaces when Automation compatibility is not an issue?..

Answer / krishna akkulu

Structs, also known as User Defined Types (UDTs), can be
used in Automation- compatible interfaces
An Automation- compatible struct may contain only primitive
Automation types as its members.

Nesting structs is not allowed, but VARIANT is allowed thus
enabling nested structs (you can store a struct in a
VARIANT).

In order for a struct to be usable for Automation-
compatible interfaces, the struct must be described in a
type library and it must be declared with its own GUID:

[uuid(21602F40-CC62-11d4-AA2B-00A0CC39CFE0)]
struct MyStruct
{
[helpstring("A long value")]
long nLongValue;

[helpstring("A string")]
BSTR bstrStringValue;
};

// Later in the IDL file
[uuid(...), version(...), helpstring(...)]
library MyLib
{
...
struct MyStruct;
};
For more info see : http://vcfaq.mvps.org/com/4.htm

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More COM DCOM Interview Questions

how you call a dll as a COM dll.

2 Answers  


Does .net replace com?

0 Answers  


what is mean by scintific,commercial and business applications? How they differ? Please answer me. Advance thanks.

0 Answers   Excel,


Define and explain about COM?

0 Answers  


Can you explain what is dcom?

0 Answers  






hi,I have applied for NIC test plz if any one have test paper pattrn plz send me on "mn_mayank38@yahoo.co.in"

1 Answers  


where can i use pmcmd commands of informatica

1 Answers  


Differentiate normal DLL to COM DLL

7 Answers   Talisma,


What is the use of com component in .net?

0 Answers  


what is oops

11 Answers   Accenture,


What is In-proc?

4 Answers  


What happens when client calls CoCreateInstance?

2 Answers   Cap Gemini,


Categories