0

What is the meaning of the keyword given below, when it is given before any function parameter ?

  • __inout_opt

Thanks

charlotte
  • 1,031
  • 3
  • 12
  • 19

1 Answers1

0

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).

jsheeran
  • 2,912
  • 2
  • 17
  • 32