0
votes
2answers
46 views
Notepad++ IDL Syntax Highlighting?
I was about to create a user-defined language file for Notepad++ to syntax-highlight IDL. But before I went and spent the time creating one, I wanted to check with the "community" …
1
vote
3answers
144 views
C# - writing a COM server - Properties mapped to methods
We are trying to replace a COM server originally written for a VB6 application
We have no access to source code.
For some reason, the VB6 app can call our constructor, but then i …
0
votes
2answers
21 views
Any sense in marking an IUnknown-derived interface as dual in IDL?
Reviewing our code I've found a curious definition in one of .idl files:
[
object,
uuid(uuidhere),
dual,
nonextensible,
oleautomation,
hidden
]
interface I …
0
votes
2answers
35 views
Possible to use precompiled headers with MIDL generated files?
We do have a project wich uses the MIDL tool to create specific header/iid and proxy files. Those files are compiled and linked with the rest of the project using a post build step …
0
votes
1answer
62 views
Differences between [in, out] and [out, retval] in COM IDL definitions
In some of the IDL I work with I have noticed that there are 2 conventions for marking return values in methods - [in, out] and [out, retval].
It appears that [in, out] is used wh …
1
vote
1answer
51 views
How to kill the nameserver process in java
I built a client server application using an IDL file for client server communication across the network. Both the client and server programs are in java. When the user enters exit …
0
votes
2answers
138 views
How do I find the lat/long that is x km east/west of a given lat/long?
Hi
I have two given lat and lon points. For example, lets assume I have two positions (point_1 and point_2) at coordinates (lat1, lon1) and (lat2, lon2).
I would like to calcul …
0
votes
1answer
68 views
How to create propput IDL method .NET interface for COM usage
I am having an issue using a .NET/ComVisible assembly in Excel/VBA. I defined several parameters as "object" in .NET so they will be translated to Variant in VBA since optional par …
0
votes
2answers
223 views
Convert Interface IDL file to C#
I have an interface defined in an IDL file that I would like to use in C#. Is there a way to convert the IDL to something usable in C#?
1
vote
1answer
186 views
How to pass bool from c# through c++ com interface in idl
I know I'm missing something simple, I have next to no experience with these com things.
I would like to do this within an interface in an idl
[id(5), helpstring("Returns true if …
0
votes
0answers
91 views
C++ to IDL tools
Are there any free tools that convert c++ code to idl? I am thinking of something similar to java2idl.
0
votes
2answers
101 views
is there a way to have midl generate each interface in a separate .h ?
I have a bunch of objects that inherit abstracts interfaces generated from an idl file. Each object that use of theses interfaces include the same file interfaces.h which contain a …
0
votes
2answers
101 views
How to declate a wide char constant in an IDL
We are migrating our C++ COM application to be unicode, and as part of this migration we want to migrate the constant strings in our IDL to unicode as well.
The problem is that at …
0
votes
1answer
71 views
coclass in .idl import interface defined elsewhere?
I have an IDL file that defines a few interfaces followed by a coclass. Can I make this class import interfaces that are not defined in this class?
0
votes
2answers
185 views
What’s the purpose of noncreatable coclasses in IDL?
What is the reason for declaring noncreatable coclasses like the following in IDL?
[
uuid(uuidhere),
noncreatable
]
coclass CoClass {
[default] interface ICoClass;
};
…
