IDL, short for Interface Description Language, is a language used to describe a software component's public interface in a programming-language-independent manner. (Not to be confused with [tag:idl-programming-language], a language used for scientific and and medical image analysis)
5
votes
4answers
2k views
How do I share a constant between C# and C++ code?
I'm writing two processes using C# and WCF for one and C++ and WWSAPI for the second. I want to be able to define the address being used for communication between the two in a single place and have ...
0
votes
0answers
265 views
Unqualified name in IDL for imported type library
I've created a COM-class that implements some interface. I want to add a method to this interface. The parameter of this method is a pointer to the interface defined in some external olb-file. In my ...
0
votes
1answer
399 views
doxygen with IDL/ODL
If you have a C++ project that has a bunch of .ODL files and the generated .h files from the ODL compiler, should doxygen be told to parse both .odl and .h, or only one or the other? In general I ...
6
votes
1answer
300 views
Why do IDL defaultvalue values look rounded?
I have a COM object with a function with an optional last argument. The IDL is a bit like this:
interface ICWhatever: IDispatch
{
[id(96)] HRESULT SomeFunction([in,defaultvalue(50.6)]float ...
1
vote
1answer
343 views
Adding a valuetype to IDL, compile and it fails with “No factory found”
I can't figure out why the client keeps complaining about the not finding the factory method. I've tried the IDL with and without the "factory" keyword and that didn't change the behavior. The ...
3
votes
3answers
2k views
How to get IDL from a .NET assembly (or how to to convert TLB to IDL) in a command line?
We have a .NET assembly (Aspose.Words actually) and we want clients to use it from COM clients without much hassle.
So we ship a .TLB with the assembly so the client can use it from languages such ...
3
votes
1answer
980 views
How to let idlj compile idl files in ant
I've no idea how to compile my idl files with the sun-idl compiler (idlj) with the help of ant?
Does anyone have an idea?
1
vote
1answer
535 views
How do I declare an IStream in idl so visual studio maps it to s.w.interop.comtypes?
I have a COM object that takes needs to take a stream from a C# client and processes it. It would appear that I should use IStream. So I write my idl like below. Then I use MIDL to compile to a tlb, ...
1
vote
1answer
208 views
idlj Ignoring “#pragma prefix”
I have an IDL file that has a "#pragma prefix" directive, but whenever I use idlj to build the Java code, it ignores this and generates an _id without the prefix specified. This is a big problem ...
2
votes
1answer
259 views
Struct inheritance in MIDL
I am trying to inherit from and extend a structure defined in MIDL. I used the same syntax as for interface inheritance i.e
typedef struct stDBIBinVarDataEx
{
float x;
} MYSTRUCT ;
struct ...
2
votes
2answers
854 views
multiple Thrift services on one transport
Just seeking confirmation here : apache Thrift protocol does not seem to support running multiple services on one transport endpoint ? ( a socket, file, whatever )
I cant seem to figure out how to do ...
0
votes
2answers
1k views
Saving and accessing a lot of ROI polygons (IDL, ImageJ, Java?, XML?)
I need to save and re-load thousands of ROI polygons on a stack of images, actually a 30-frame-per second movie for 30+ minutes, so at least 54,000 frames. There can be multiple ROIs on a single ...
0
votes
2answers
164 views
Problem with name collision in an IDL file
We have an idl file with multiple interfaces defined, two of which have somehting like this:
[
object,
uuid(79E24BAA-DC12-4caf-91DD-2A4D47FED30A),
helpstring("ISomeInterface ...
0
votes
1answer
142 views
how to pass a windows structure to a method defined in an interface of an IDL file?
If I want to pass a structure defined in windows.h to one of method of a given interface then how can i do that in an IDL?
Suppose the structure be SECURITY_DESCRIPTOR which is Declared in Winnt.h; ...
3
votes
2answers
206 views
ctags generator for CORBA IDL?
I work in a multi-language environment and use Vim + ctags for navigating the code. However we also use CORBA and exuberant ctags does not parse IDL files.
Does anyone know of a ctags compatible ...
1
vote
1answer
306 views
IDL in ATL/COM: Can I publish a const of a complex type?
I know how to publish a const of a simple type in IDL, for example:
const long blah = 37
But I want to publish consts of complex types, with methods, or at least readable struct-like member fields. ...
3
votes
3answers
383 views
Shared common definitions across C/C++ (unmanaged) and managed C# code
I have a set of struct definitions that are used by both C# managed components and unmanaged C/C++ components. Right now, the identical struct definitions exist separately in C/C++ and C# code - ...
1
vote
1answer
848 views
Properly extending a COM interface (IDL)
I am working with some legacy c++ code and I need to extend an interface. The current interfaces are for example:
[
object,
uuid(guid),
version(1.0),
dual,
nonextensible,
oleautomation
]
...
3
votes
3answers
3k 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" to see if anyone ...
2
votes
2answers
547 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 IOurInterface : ...
3
votes
3answers
1k 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 it gets:
System ...
1
vote
2answers
471 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 that calls nmake.
...
1
vote
1answer
315 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, both the server ...
4
votes
1answer
4k 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 when there are ...
0
votes
1answer
1k views
How do I find the lat/long that is x km east/west of a given lat/long?
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 calculate a third point, that ...
0
votes
1answer
964 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 parameters in VBA need ...
2
votes
1answer
945 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
851 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 the moment, we ...
10
votes
2answers
6k 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
735 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?
3
votes
1answer
2k 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 the object is in a ...
0
votes
1answer
104 views
How do you express a int[] property in interface description language?
How would you implement this property in IDL:
public int[] Params
{
get
{
return _Params;
}
set
{
_Params = value;
}
...
2
votes
2answers
664 views
How to prevent coclass implementations from being exposed in an ATL type library
I am building an ATL type library with a type of class factory. Something sorta like this:
[ object, uuid(...), ... ]
interface INumber : IDispatch {
[propget, id(0)] HRESULT Value([out, retval] ...
0
votes
2answers
540 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 all the c++ generated ...
2
votes
2answers
218 views
Why is it necessary to add new events to the *end* of an IDL interface?
I have found that when I add new events to an existing COM/IDL interface, I sometimes run into strange issues unless they are added to the end of the interface.
For example, say I have the following ...
0
votes
2answers
994 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;
};
I mean such class ...
1
vote
1answer
490 views
midl error 2025 when compiling idl file on win32 (midl doesn't like string<40>)
The idl files I have compile fine with linux tools, but when I try to compile using midl I get an error
error MIDL2025 : syntax error : expecting a declarator or * near "<"
the line is:
...
10
votes
4answers
3k views
What is IDL?
What is meant by IDL? I have googled it, and found out it stands for Interface Definition Language, which is used for interface definition for components. But, in practice, what is the purpose of IDL? ...
1
vote
3answers
865 views
How to write a code generator given a custom IDL?
If you have a simple enough schema with basic boolean string fields, how to go about writing a code generator in C++.
If you ever wrote , how did you start. Articles/recommendation welcome.
EDIT: ...
0
votes
1answer
269 views
Editing the IDL created by OLE view for a C++ component
What things do I need to consider when doing this:
What to remove/manipulate/add
Regards
0
votes
2answers
2k views
No type definitions in pre-defined IDL FILE
Firstly,
Using plain C++, without ATL, MFC attempting to use COM Object interface.
Using oleview (OLE/COM Object viewer) - used to engineer the IDL code.
At this stage, using MIDL Compiler, now I'm ...
1
vote
1answer
333 views
Defining a pure base class using IDL
When I define an interface in IDL which does not derive from anything, the MIDL precompiler warns as such (Visual C++ 2008) :
warning MIDL2271 : [object] interfaces must derive from another ...
0
votes
1answer
772 views
Microsoft MIDL does not report an error if a typedef uses an unknown type, is it a bug?
I would like to know whether I am missing something:
//this is test.idl
typedef foo foo_t;
// end of test.idl
When I compile test.idl with the following command:
midl /W4 test.idl
I get this ...
2
votes
2answers
4k views
Using C++ COM interface in C# for both client and server
I need to make a piece of C# code interact through COM with all kinds of implementations.
To make it easeier for users of that integration, I included the interacted interfaces in IDL (as part of a ...
0
votes
3answers
2k views
IDL declaration (in C++) for a function that will take a C-style array from C#
I am working with an existing code base made up of some COM interfaces written in C++ with a C# front end. There is some new functionality that needs to be added, so I'm having to modify the COM ...
0
votes
1answer
529 views
__REQUIRED_RPCNDR_H_VERSION__
I create a header file from an IDL . The IDL file has been compiled in Visual C++ 2005 .
The generated header file contains #define REQUIRED_RPCNDR_H_VERSION 475 .
I tried to use this header file in ...
3
votes
1answer
2k views
IDL enumeration not displayed in type library
I have a COM object written using the MS ATL library. I have declared a bunch of enumerations in the IDL but they do NOT appear when viewing the type library using the MS COM Object Viewer tool. The ...
1
vote
3answers
2k views
What sorts of simple IDL parsers / code generators are available for C / C++ code?
For a project I'm working on, I need to have a lot of source code files generated from an interface description. That description is currently IDL (really, a pidgin IDL-like language), but I'm not ...
2
votes
2answers
354 views
Creating IDL for MAPI-MIME conversion
I'm trying to create the IDL for the IConverterSession interface and I'm confused by the definition of the MIMETOMAPI method. It specifies the LPMESSAGE pmsg parameter as [out] yet the comments state ...
3
votes
4answers
350 views
Changing a CORBA interface without recompiling
I'd like to add a method to my existing server's CORBA interface. Will that require recompiling all clients?
I'm using TAO.
