windows – 我们应该使用_In_而不是__in吗?

前端之家收集整理的这篇文章主要介绍了windows – 我们应该使用_In_而不是__in吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我今天读到了VS.h中的sal.h.
我有点惊讶.
// This section contains the deprecated annotations
|------------|------------|---------|--------|----------|----------|---------------|
|   Level    |   Usage    |  Size   | Output | NullTerm | Optional |  Parameters   |
|------------|------------|---------|--------|----------|----------|---------------|
| <>         | <>         | <>      | <>     | _z       | <>       | <>            |
| _deref     | _in        | _ecount | _full  | _nz      | _opt     | (size)        |
| _deref_opt | _out       | _bcount | _part  |          |          | (size,length) |
|            | _inout     |         |        |          |          |               |
|            |            |         |        |          |          |               |
|------------|------------|---------|--------|----------|----------|---------------|

我总是使用这些注释.
我不敢相信他们被弃用了.这是真的吗?
如果是这样,为什么?
从现在开始我们应该使用以下注释吗? – 我不熟悉:(

|--------------|----------|----------------|-----------------------------|
|   Usage      | Nullness | ZeroTerminated |  Extent                     |
|--------------|----------|----------------|-----------------------------|
| _In_         | <>       | <>             | <>                          |
| _Out_        | opt_     | z_             | [byte]cap_[c_|x_]( size )   |
| _Inout_      |          |                | [byte]count_[c_|x_]( size ) |
| _Deref_out_  |          |                | ptrdiff_cap_( ptr )         |
|--------------|          |                | ptrdiff_count_( ptr )       |
| _Ret_        |          |                |                             |
| _Deref_ret_  |          |                |                             |
|--------------|          |                |                             |
| _Pre_        |          |                |                             |
| _Post_       |          |                |                             |
| _Deref_pre_  |          |                |                             |
| _Deref_post_ |          |                |                             |
|--------------|----------|----------------|-----------------------------|

顺便说一下,SO标签中不存在SAL标签.
如果可以,请制作它.

您似乎应该习惯新的“属性”SAL格式,请参阅本文中间的红色注释:

http://blogs.msdn.com/b/michael_howard/archive/2006/05/19/602077.aspx

原文链接:https://www.f2er.com/windows/364539.html

猜你在找的Windows相关文章