What does NTSTATUS 0xC00B0007 (STATUS_RESOURCE_ENUM_USER_STOP) mean?

 
Previous Next
STATUS_MUI_FILE_NOT_LOADED STATUS_CLUSTER_INVALID_NODE

STATUS_RESOURCE_ENUM_USER_STOP

Resource enumeration ended at the caller’s request

Resource enumeration APIs invoke an application callback for each matching resource type, name, or language. The callback can return false to stop. This status records that deliberate early termination and does not, by itself, indicate malformed resources or loader failure.

Applications often stop after finding the first acceptable resource. Diagnostic tools, however, should distinguish an intentional early match from an unexpected callback failure so incomplete output is not mistaken for a complete inventory.

What to inspect

  • Record which callback returned false and the last resource type, name, and language visited.
  • Determine whether the caller intentionally stops after a match or aborted because of an internal error.
  • Preserve callback error information separately because the enumeration status does not encode it.
  • Run a full enumeration when validating that all localized resources are present.

References


Looking for a different code? Search another status or error code.