_get_doserrno
_doserrno已弃用。 使用 _get_errno。
errno_t _get_doserrno(
int * pValue
);
参数
- [out]pValue
要填充的整数的指针 _doserrno 变量的当前值。
返回值
返回零,如果成功;在失败的错误代码。 如果 pValue 是 NULL,无效参数调用处理程序 参数验证如中所述。 如果执行允许继续,此功能设置 errno 到 EINVAL 并返回 EINVAL。
备注
_doserrno 的可能值在 Errno.h 定义。
要求
实例 |
必需的头 |
可选标头 |
---|---|---|
_get_doserrno |
stdlib.h |
errno.h |
有关更多兼容性信息,请参见中介绍的 兼容性 。