What is the meaning of the keyword given below, when it is given before any function parameter ?
- __inout_opt
Thanks
What is the meaning of the keyword given below, when it is given before any function parameter ?
Thanks
It's a header annotation in the Windows API. _inout
means the function reads from and writes to the buffer, and _opt
means it is optional (i.e. it can be null).