0xC0000002
0xC0000002 is an NTSTATUS error code commonly documented as STATUS_NOT_IMPLEMENTED. It is used by Windows operating systems to indicate that the requested operation or function is not implemented by the component receiving the request. NTSTATUS codes form a 32-bit space used by the kernel and many system components to report success, information, warning, and error conditions. The value 0xC0000002 encodes an error severity and identifies the specific status as not implemented.
Context and usage: This code may be returned by kernel-mode drivers, subsystems, or native APIs when a
Relation to Win32 APIs: In user-mode applications, NTSTATUS values are frequently translated into Win32 error codes
Causes and handling: Common causes include calling a function that the component does not implement, using
See also: STATUS_NOT_IMPLEMENTED, NTSTATUS, RtlNtStatusToDosError, Windows error mapping.