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)

learn more… | top users | synonyms

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 ...
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#?
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 ...
2
votes
2answers
523 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 : ...
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? ...
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 ...
6
votes
4answers
695 views

IDL for JSON REST/RPC interface

We are designing a fairly complex REST API, in which most of the I/O are JSON encoded objects with a specific structure. One challenge we have found is to document the API in such a way that makes it ...
2
votes
1answer
5k views

Including a .idl file in a C++ project

I'm building a project in C++ which uses DirectShow's video capture library to connect to a camera. The video card manufacturer (BlackMagic) has provided .idl (Interface Definition Language) files ...
1
vote
1answer
522 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, ...
3
votes
3answers
376 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 - ...
3
votes
4answers
346 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.
2
votes
0answers
473 views

Help needed with “The type library importer could not convert the signature for the member” warning in a trivial setup

Observe this most trivial IDL file: import "unknwn.idl"; typedef struct _MyStruct { DWORD len; [size_is(len)] BYTE *buffer; } MyStruct; [ object, ...
2
votes
1answer
423 views

Problem creating COM-library only containing enum's

I'm am doing a COM-interop project. Substituting some VB and C++ ATL COM projects with C# and .NET Interop. When i define enumerations in .NET and they are made ComVisible, they get exposed as ...
2
votes
2answers
658 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] ...
1
vote
1answer
122 views

Conversion between C structs (C++ POD) and google protobufs?

I have code that currently passes around a lot of (sometimes nested) C (or C++ Plain Old Data) structs and arrays. I would like to convert these to/from google protobufs. I could manually write ...
1
vote
1answer
129 views

Trouble Casting COM Object to a C#/.NET Class

I have a base class that is written in C# that implements an interface defined in an IDL library. I have a C++ class that manages the single instance of this class. I also have a C# project that needs ...
1
vote
2answers
269 views

IDL interface, C++, CORBA, I'm dealing with “conflicting return type specified for” and “invalid abstract return type for member function ‘virtual…”

For over 3 days I've been dealing with CORBA and C++ and my app interface written in IDL. My app interface looks like this: #ifndef __FORUM_INTERFACE_IDL__ #define __FORUM_INTERFACE_IDL__ #include ...
1
vote
1answer
252 views

Hosting CLR in native - COM interfaces, unresolved external symbol _CStdStubBuffer_Release@4

I'm experimenting with hosting CLR (not trying to use mono for now, though I will probably try). Basically, I'm following this: ...
1
vote
1answer
315 views

Exposing indexer like properties to COM

I have in existing COM-interface. I wan't to create a .net assembly that exposes a new interface as COM (with a new GUID), but the structure of the interface needs to be the same. How can i create a ...
1
vote
1answer
304 views

Is there a way with MIDL to turn off C-style headers generation?

I have a simple .IDL file (iface.idl) which describes an IUnknown based interface: import "unknwn.idl"; [ uuid(80DFDD28-F033-431e-B027-CDD2078FC78A) ] interface ISunPathCalc : IUnknown { ...
0
votes
0answers
181 views

Include an idl file in Qt to use an API (C++ project)

I would like to include an .idl file in my Qt C++ project, in order to use an API (precisely an API for a Blackmagic hardware device). Does anybody knows how to include that kind of file in Qt ...