STATUSINVALIDPARAMETER
STATUSINVALIDPARAMETER is an NTSTATUS error code used by Windows operating system components and APIs to indicate that a function was invoked with an invalid parameter. It is officially named STATUS_INVALID_PARAMETER in the Windows Native API and is defined as 0xC000000D. The status is returned by kernel-mode and user-mode interfaces when input validation fails or a parameter does not meet the required constraints.
Causes include passing a null pointer where a valid object is required, providing a buffer with an
Effect and handling: When a caller receives STATUS_INVALID_PARAMETER, the function fails and returns the status to
Notes: STATUS_INVALID_PARAMETER is one of several common parameter-validation failures in the NTSTATUS family; its presence often