// Copyright (c) 2025-2026 the libmagic-rs contributors
// SPDX-License-Identifier: Apache-2.0
//! Indirect offset resolution (not yet implemented)
use crateLibmagicError;
use crateOffsetSpec;
/// Resolve an indirect offset specification
///
/// Indirect offsets read a pointer value from the file at a base offset,
/// then use that value (with optional adjustment) as the final offset.
///
/// # Errors
///
/// Currently returns `LibmagicError::EvaluationError` with `UnsupportedType`
/// as indirect offset resolution is not yet implemented.
// TODO: Implement indirect offset resolution (issue #37)