1
vote
3answers
373 views
How do I create a variant array of BSTR in Euphoria using EuCOM?
So far I've figured out how to pass Unicode strings, bSTRs, to and from a Euphoria DLL using a Typelib. What I can't figure out, thus far, is how to create and pass back an array o …
0
votes
1answer
73 views
Unmanaged C++ tlh file not updating?
I have an IDL file with some interfaces in it.
[
object,
uuid(newguid),
dual,
helpstring("NewInterface Interface"),
pointer_default(unique)
]
interface INewInterfac …
0
votes
0answers
26 views
Why is my code slower using #import “progid:typelib” than using “MFC Class From TypeLib”?
I am writing an automation client in Visual C++ with MFC. If I right-click on my solution » Add » Class, I have the option to select MFC Class From TypeLib. Selecting this option …
0
votes
0answers
8 views
invoke IMUCTalkAPI and IMUCTalkPlugin of Google Talk 1.0.0.104 TypeLib
I see GoogleTalk.exe (1.0.0.104) has some undocumented TypeLib interface
Dispatch IMUCTalkPlugin; // IMUCTalkPlugin Interface
GUID={4C9DC108-C73F-11DA-95AB-00E08161165F};
functi …
1
vote
1answer
110 views
Is it possible to add additional GUIDs to a typelib?
I have a typelib that describes some interfaces. As some of these interfaces are used as a category, I want to add the category IDs to the typelib. So the question is:
a) how can …
1
vote
2answers
101 views
Overloads in COM interop (CCW) - IDispatch names include suffix (_2, _3, etc)
I have a managed assembly containing a few classes, and those classes have overloaded methods. I expose the assembly to COM/IDispatch callers via
[ComVisible(true)]
..and also …
1
vote
2answers
55 views
Names in the interop assembly have wrong capitalization
I have a VC++ COM component with a type library. The type library of this component declares an interface and a co-class:
[
object,
uuid( ActualUuidHere),
dual,
no …
2
votes
4answers
134 views
COM typelib doubt
A type library declares the classes, interfaces, constants, and procedures that are exposed by an application or dynamic-link library (DLL). A type library is usually a resource in …
5
votes
3answers
1k views
Replicating Visual Studio COM registration with a WiX Installer
Once upon a time, a young, naive engineer thought it would be a good idea to separate out some of the functionality for his app into a COM component, written in C#. Visual studio …
1
vote
4answers
277 views
Indirect Typelib not imported well from Debug dll
Using VC2005, I have 3 projects to build:
libA (contains a typelib, results in libA.dll): IDL has a line library libA { ...
libB (contains a typelib importing libA, results in l …
6
votes
3answers
1k views
Typelib Generation and Installation with WiX
After asking about what Visual Studio does to register a COM Library, it became clear that VS did two things for COM registration:
Registered the COM Library
Creates and registe …
0
votes
2answers
261 views
When To Change a GUID on a Type Library
I know that when you add/change/remove methods in a COM interface you're supposed to change the interface/coclass GUID but what about type libraries. When should you change the ty …
2
votes
2answers
435 views
Which is “better”: COM DLL or Standard DLL with a Typelib?
I put "better" in quotes because it's a qualitative question. I've been writing COM DLLs for a couple of years now and have only recently come upon, and successfully used, the stan …
3
votes
6answers
850 views
Testing Delphi DLL crashes VB6 IDE
I've had my first go at writing a DLL in Delphi. So far so good. By using a typelib I've been able to pass Widestrings to and from the DLL without difficulty.
What's curious at th …
