STATUSSUCCESS
STATUS_SUCCESS is a standard NTSTATUS value used by Windows NT and related APIs to indicate that an operation completed without error. The canonical numeric value is 0x00000000 (decimal 0). It serves as the primary success code in the Windows NT status code ecosystem.
NTSTATUS is a 32-bit signed value. The most significant bit indicates severity; nonnegative values denote success,
In Windows programming, NTSTATUS values are distinct from Win32 error codes. Some APIs translate NTSTATUS values
Related codes in the NTSTATUS family include STATUS_NOT_IMPLEMENTED, STATUS_ACCESS_VIOLATION, STATUS_INVALID_PARAMETER, and STATUS_PENDING. The set of codes
Notes on terminology: while informal references may spell the name as STATUSSUCCESS, the official name is STATUS_SUCCESS.