_get_fileinfo
Gets the value of the _fileinfo variable, which determines what information about open files is passed to spawned processes.
Starting with Visual C++ 2005, _get_fileinfo is no longer supported in any Microsoft developer tools or libraries.
errno_t _get_fileinfo(
int * pFileInfo
);
Parameters
- [out] pFileInfo
A pointer to an integer to be filled with the current value of _fileinfo.
Return Value
Returns zero if successful; an error code on failure. If pFileInfo is NULL, the invalid parameter handler is invoked, as described in Parameter Validation. If execution is allowed to continue, this function returns EINVAL and sets errno to EINVAL.
Remarks
The function gets the value of the _fileinfo global variable. This variable determines what information is passed to processes created with the spawn functions. For more information, see _spawn, _wspawn Functions.
Requirements
Routine |
Required header |
---|---|
_get_fileinfo |
None |