Search Results

0
votes

What’s the purpose of noncreatable coclasses in IDL?

The noncreatable attribute is just a hint to the consumer of the object -- .Net and VB6, for example, when seeing this attribute, will not allow the client to create the object "the normal way", e. …
3
votes

When and why use CoLoadLibrary?

Have a look at the code: mov edi,edi push ebp mov ebp,esp push 8 push 0 push dword ptr [ebp+8] call dword ptr [ole32!_imp__LoadLibraryExW (71eb1214)] pop …
1
vote

What is required to enable marshaling for a COM interface?

Typelibs are one way to support marshalling, proxy/stub DLLs (genereated from the IDL) are another. In both cases, however, you'll need the IDL in the first place. If Microsoft does not pr …
2
votes

WCHAR array not properly marshalled

IIRC, the typelib marshaller ignores the size_is attribute -- thus, only 1 char is marshaled. …
1
vote

Why does COM+ ignore the apartment threading model?

STA guarantees that your object is only accessed from a single, specific thread -- no protection against shared variable is required. I remember that for VB6, there was a special mode (I do …