What is _In_ in C++?

后端 未结 3 1710
旧时难觅i
旧时难觅i 2020-12-29 04:31

I have searched this up rather a lot, but come up with no helpful results.

I am currently trying to program simple DirextX game for Windows 8 Metro, and have come ac

3条回答
  •  一生所求
    2020-12-29 05:00

    _Out_ means argument passed as reference. _In_ means the opposite. (_Out_ x) and (&x) are similar.

提交回复
热议问题