STATUSNOTIMPLEMENTED
STATUS_NOT_IMPLEMENTED is an NTSTATUS error code used in Windows NT-based operating systems and their subsystems to indicate that a requested operation is not implemented by the target component. It signals that the function or feature is recognized by the API but not provided by the specific object being acted upon, such as a driver, filesystem filter, or system service.
Usage contexts include kernel-mode and user-mode interactions. A driver, subsystem, or API may return STATUS_NOT_IMPLEMENTED when
The numeric value of STATUS_NOT_IMPLEMENTED is 0xC0000002. It is part of the NTSTATUS code family and is
In broader terms, the concept parallels ENOSYS in POSIX systems, where a function is not implemented by