__in __out 是什么

rup wrote:
> What is the meaning of these keywords used before variables in a
> function parameters?
>
> __in
> __out
> __in_opt
>


These are Microsoft extensions that annotate the parameters for

__in: input parameter
__out output parameter
__in_opt: optional input parameter

原文地址:https://www.cnblogs.com/lihaozy/p/2608690.html