api文档方法参数
Posted AGB
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了api文档方法参数相关的知识,希望对你有一定的参考价值。
in型参数,带信息进去用;
out型参数,方法执行结束,带着信息出来
如:
CreateProcessW(
_In_opt_ LPCWSTR lpApplicationName,
_Inout_opt_ LPWSTR lpCommandLine,
_In_opt_ LPSECURITY_ATTRIBUTES lpProcessAttributes,
_In_opt_ LPSECURITY_ATTRIBUTES lpThreadAttributes,
_In_ BOOL bInheritHandles,
_In_ DWORD dwCreationFlags,
_In_opt_ LPVOID lpEnvironment,
_In_opt_ LPCWSTR lpCurrentDirectory,
_In_ LPSTARTUPINFOW lpStartupInfo,
_Out_ LPPROCESS_INFORMATION lpProcessInformation
);
以上是关于api文档方法参数的主要内容,如果未能解决你的问题,请参考以下文章