_get_doserrno
_doserrno is deprecated. Use _get_errno instead.
errno_t _get_doserrno( int * pValue );
Returns zero if successful; an error code on failure. If pValue is NULL, the invalid parameter handler is invoked as described in Parameter Validation. If execution is allowed to continue, this function sets errno to EINVAL and returns EINVAL.
|
Routine |
Required header |
Optional header |
|---|---|---|
|
_get_doserrno |
<stdlib.h> |
<errno.h> |
For more compatibility information, see Compatibility in the Introduction.
Wrong parameter type
This doc states int * pValue
However VC\include\stdlib.h specifies unsigned long * _Value
However VC\include\stdlib.h specifies unsigned long * _Value
- 1/3/2012
- GregUzelac