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
);
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
MIDL doesn’t really support reference parameters, it only supports “in” and “out” parameters. So if you DO pass in a reference, it’s just syntactic sugar for a pointer to the value (the issue is observability – if you have a callback function or interface in our method signature, changes to a reference would be observable from the callback, but changes to an [out] parameter aren’t visible until the function returns.
In addition, the difference between “& const” and “const &” are lost. If you look at the definition of REFGUID, you’ll see that they only use one form of “const” for C++ code: