Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
0answers
417 views

Creating an IDL file from a DLL [closed]

I'm working on a VB6 graphical interface that make use of a DLL generated from a C code that makes use of __declspec(thread) variables. The problem is that because of a known limitation, it is not ...
3
votes
1answer
274 views

VS2008 C++ compiler keeps asking to build the project

I have a project that includes an idl file that generates a .c file that is included in another file of the same project. I build this project and all is fine, I then try to run the project and I am ...
3
votes
2answers
208 views

MIDL changes case of identifier when compiling IDL file

I've got a snippet of IDL that looks like this: [ object, uuid(...), pointer_default(unique) ] interface IVirtualMachine { /* ... */ } [ object, uuid(...), pointer_default(unique) ] interface ...
3
votes
0answers
604 views

How can I get MIDL to search additional include directories for qualified paths

Update: Just over six months after opening a support call to Microsoft it has been rejected, they claim it is not a bug (since the documentation doesn't explicitly say that the behaviour seen isn't ...
2
votes
2answers
52 views

VB6's Boolean data type equivalent in MIDL

Which MIDL data type is equal to the VB6's Boolean type?
2
votes
2answers
63 views

How do I write a COM dll?

To better myself I am attempting to make my dll's COM compliant, I thought I'd just need to extend/implement a few interfaces and job done but now I am at a cross roads, 1) Should I learn MIDL? 2) ...
2
votes
2answers
109 views

MIDL CoClass derived from Interface defined in the same file

Why can't I define an Interface in an idl file and then have a CoClass derive it in a library block within the same file when I am deriving said Interface from an Interface that I have defined in ...
2
votes
1answer
135 views

Get IDL code from TypeLibrary programmatically

I am writing code to perform the following steps; Register a .net .dll and generate a .tlb using regasm.exe Register a .net .dll and generate a .tlb using regasm.exe Generate the IDL code from the ...
2
votes
1answer
429 views

Define a struct in a midl generated header file

I am in the process of automating the build of a legacy product and have hit a wall... I have a .idl file that is compiled in VC++ 6.0 using midl to generate a .tlb, .h and .c file that has a manual ...
1
vote
0answers
55 views

“operation not supported” when invoking an RPC call on Windows 2008

The application uses Microsoft RPC for interprocess communications. The application works flawlessly on Windows Server 2003 (Server WS2003 or WS 2008 --- Client WS2003). But the application fails when ...
1
vote
3answers
83 views

Weird IDL error after migration to VS2010

Here's a very simple IDL interface that we've used successfully under VS2008 (arguments list shortened for brevity): interface Mailer { string findNode( [in] string requestedNode ); unsigned ...
1
vote
1answer
103 views

How to compile a .dll for MSHTML v9. I'm currently getting 100s of “MIDL 2035: constant expression expected” errors

I'm a .net developer and I'm trying to compile a .tbl and .dll for MSHTML v9 for use in my .net applications. I found the following instructions for building a MSHTML v8 .dll: start menu -> ...
1
vote
1answer
51 views

How to add and implement a new interface to an Inproc COM server

I've implemented a windows deskband (using the windows SDK sample) and need a way to communicate (one call to start IPC with another application, IPC is already working) with it. My COM experience is ...
1
vote
1answer
112 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 { ...
1
vote
1answer
64 views

C++ exposed property names don't match the names given in the IDL

In the IDL file for a C++ component I have something like the following, allowing the property to be COM visisble: interface IInterface { [propget, id(1), helpstring("the ID")] HRESULT ...
1
vote
1answer
246 views

Any way to resolve C4772 errors without having to register DLLs?

I am maintaining a VS2010 project which has a number of cross-referenced COM libraries. I am trying to configure the project in such a way that it is buildable from a random workstation which has ...
1
vote
3answers
557 views

Merging two .IDL files or two .tlb files into one file

I have 2 .net dll's which I expose to COM using REGASM. In order to simplify referencing within a COM client I would like to make these into one file. I have tried converting both files to IDL and ...
1
vote
2answers
265 views

How does Visual Studio determine the order to compile IDL files?

I have a COM project that contains a number of IDL files, some of which are imported into other ones. How does Visual Studio decide which ones to compile (using MIDL) first? I want to control the ...
1
vote
1answer
51 views

MIDL Complex Types As Interface Method Parameters

I would like to know if maybe there are some good solutions to handling complex types not importable into IDL. My biggest concern is using _m128 vector types for simmed instructions ie. XMVECTOR. ...
1
vote
1answer
148 views

MIDL (Constant) References

Are there no constant references in MIDL method declarations???? eg. [id(1), helpstring("My Method")] HRESULT MyMethod( [in] IID & const rclsid ); for HRESULT MyMethod( IID const ...
1
vote
1answer
133 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 ...
1
vote
2answers
248 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 : ...
1
vote
1answer
262 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 ...
1
vote
2answers
806 views

Different output from midl.exe 6 and midl.exe 7

I'm tyring to convert a MSVC project from VS 2005 to VS 2008. It contains a IDL file that outputs a header and stubs used for RPC. The VS 2005 project uses MIDL.exe version 6.00.0366. The VS 2008 ...
1
vote
2answers
698 views

MIDL generates the same file for /env win32 and /env win64

In Visual Studio, when you compile foo.idl, MIDL generates the proxy information in foo_p.c. Unfortunately, for Win32 and x64 files, it generates the same file. For Win32, the file starts with: #if ...
0
votes
0answers
24 views

midl compiler random crash

I have a project that defines an idl and it compiles it using MIDL. The issue is that I got a random crash when MIDL is processing C:\Program Files\Microsoft Visual Studio ...
0
votes
0answers
43 views

MIDL “undefined symbol” error when using importlib

I am using MIDL to generate type libraries from IDLs. Furthermore, TLBs are imported to .NET assemblies and used through C#. I thought that it would be a good habit to break down the type libraries ...
0
votes
1answer
56 views

Separate MIDL project in Visual Studio

I'm trying to make separate project for generated files from midl compiler. I have .idl file with rpc definitions. Midl compiler generates two files. For server and for client. And I need to add ...
0
votes
1answer
59 views

size_t, void* and hbitmap data type equivalents in MIDL

What MIDL data types should I use to declare interface method parameters of C++ data types like size_t, void*, HBITMAP and other types of winapi handles (HANDLE, HFONT, etc.)?
0
votes
0answers
29 views

tlb\olb function implementations

I have a tlb / olb file how can I get the path of the dll / ocx file ... where the functions of the tlb are implemented in. for example if I have the activeds.tlb how can I get from the tlb file that ...
0
votes
2answers
91 views

MIDL. Why callback c++ interface doesn't renewed after method added to idl?

I try to implement callback interface with COM techonlogy and have IDL like that: library LogstreamScannerLib { importlib("stdole2.tlb"); [ uuid(8CACF064-EF0E-4496-92D5-F26C64A5858A) ...
0
votes
1answer
56 views

Only some of the member classes of a tlb get registered

I had and an already existing odl file and I created the tlb out of it using MIDL.exe I registered the tlb using regtlib.exe when I search the registry I am able to find only the id of type library ...
0
votes
1answer
184 views

MIDL Compiler error: MIDL

When I use MIDL to compile a IDL file to .h and .c, I get a error said: midl : command line error MIDL1004 : cannot execute C preprocessor cl.exe. Please kindly help me, I do not know why. The MIDL ...
0
votes
1answer
52 views

Portable address offset parameter in IDL

I'm porting an old 32-bit COM server to 64-bit architecture. Many functions take buffer addresses and offsets as parameters, as __int3264 and __int3264 pointers. The problem is that this type is not ...
0
votes
1answer
62 views

MIDL import keyword generates to much compiler output

Each import in .idl file generate following output: 64 bit Processing file.idl Because of that I have two pages of output for every idl file processed. Is there any way to reduce this flood? Ideal ...
0
votes
2answers
100 views

Are Visual Studio 6 typelibs handled differently in Visual Studio 2008 under Vista and 7?

I have written a standard DLL in Visual Studio 6 C++. I have also written a typelib to go with it so that it can be used directly in VB6 rather than via Declare. It works fine in VB6 under Windows ...
0
votes
1answer
550 views

Issues Using Midl to create a .tlb from .idl “expecting a type specification”

I have been having a prolonged encounter with the beast known as COM Interop... I am currently trying to generate a .tlb from a .idl file generated by the OLE/COM Object Viewer. However when trying ...
0
votes
1answer
179 views

Prevent recompilation of oaidl.idl and ocidl.idl

I have a COM/ATL project with a number of IDL files. Most of these IDL files import oaidl.idl and ocidl.idl. Whenever I compile my project, Visual Studio calls MIDL to recompile oaidl.idl and ...
0
votes
1answer
256 views

Importing interfaces in IDL from an external type library

I have two type libraries with COM interfaces that I wrote using ATL and Microsoft's IDL. I would like an interface in one library to inherit from an interface in the other. Essentially, I would like ...
0
votes
1answer
148 views

Managing definitions in a COM type library with a lot of IDL interfaces

I'm creating a COM type library with over one hundred interfaces. Defining all of the interfaces and coclasses in a single library is unreasonable... the IDL file becomes thousands of lines long! So ...
0
votes
1answer
648 views

MIDL compilation error (and maybe idl file generation question)

We're looking into moving our application from VS2008 to VS2010. We generate some COM objects with "attributed programming" and the IDL is automatically generated. The import directives for both ...
0
votes
1answer
162 views

ATL and types from scrrun.dll

I have interface in ATL project which must contains member with parameter of Scripting::IDictionary** but in MIDL file with description of my interface it's not possible because Scripting library is ...
0
votes
1answer
354 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, ...
0
votes
1answer
442 views

midl.exe cannot load mscorlib.tlb

I'm trying to use midl to turn an idl file into a tlb. However, when I try I get this warning: warning MIDL2015: failed to load tlb in importlib : mscorlib.tlb and I then get a subsequent error: ...
0
votes
2answers
93 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
169 views

Weird namespace addition when importing a typelib

I want to add a method accepting IStream* to my COM interface. Here's the idl excerpt: import "oaidl.idl"; import "ocidl.idl"; import "objidl.idl";//IStream is declared in this .idl file [ ...
0
votes
2answers
367 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 ...
0
votes
2answers
708 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 ...
0
votes
5answers
355 views

COM API - could not pass “NULL” for a pointer argument

I have a COM API foo, the IDL looks like: foo([in] unsigned long ulSize, [in, size_is(ulSize)] unsigned char* pData) when I consume this function with foo(0,NULL); I get an error - NULL argument ...
0
votes
3answers
83 views

may COM server reallocate ([in, out] CACLSID * arg)?

With a COM interface method declared as this: [ object, uuid(....), ] interface IFoo : IUnknown { HRESULT Foo([in, out] CACLSID * items); } With regards to marshalling, is the server allowed ...

1 2