MIDL (Constant) References
Posted
by PrettyFlower
on Stack Overflow
See other posts from Stack Overflow
or by PrettyFlower
Published on 2010-06-12T08:55:17Z
Indexed on
2010/06/12
9:03 UTC
Read the original article
Hit count: 416
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 &rclsid
);
© Stack Overflow or respective owner