“WinMain”的注释不一致

时间:2017-12-24 05:48:13

标签: c++ windows visual-studio code-analysis

我试图让我的代码尽可能完美,并且我已经清除了所有错误和(其他)警告。我留下了这两个:

Warning C28253  Inconsistent annotation for 'WinMain': _Param_(2) has 'SAL_null(__no)' on this instance.
Warning C28252  Inconsistent annotation for 'WinMain': _Param_(2) has 'SAL_null(__maybe)' on the prior instance.

这是我的WinMain功能

int CALLBACK WinMain( _In_ HINSTANCE hInstance, _In_ HINSTANCE hPrevInstance, _In_ LPSTR lpCmdLine, _In_ int nCmdShow );

为什么我的第二个参数HINSTANCE hPrevInstance没有正确注释,尽管它直接从带有_In_信息的MSDN中被删除?

1 个答案:

答案 0 :(得分:2)

这是因为hPrevInstance参数实际上包含_In_opt_注释,而不仅仅是_In_