vote up 0 vote down star

I've got a snippet of IDL that looks like this:

[ object, uuid(...), pointer_default(unique) ]
interface IVirtualMachine { /* ... */ }

[ object, uuid(...), pointer_default(unique) ]
interface IVirtualServer : IUnknown
{
    HRESULT FindVirtualMachine(
        [in] BSTR configurationName,
        [out,retval] IVirtualMachine **virtualMachine);
};

[ uuid(...), version(1.0) ]
library VirtualServerLib
{
    [ uuid(...) ]
    coclass VirtualServer
    {
        [default] interface IVirtualServer;
    };

    [ uuid(...) ]
    coclass VirtualMachine
    {
        [default] interface IVirtualMachine;
    };
};

...when I compile it with MIDL and then look in the generated type library, VirtualMachine (upper-case V) has been turned into virtualMachine (lower-case V).

If I call my coclass XirtualMachine, for example, it's all good.

What the hell?

flag

69% accept rate

1 Answer

vote up 0 vote down check

OK. Worked it out. It was this line here:

[out,retval] IVirtualMachine **virtualMachine);

If I change it to:

[out,retval] IVirtualMachine **ppVirtualMachine);

...then it works fine. Something screwy in MIDL, I guess. Maybe it's trying to do VB-like case correction.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.