openthread/bindings.rs
1// Copyright 2025 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4use crate::prelude_internal::*;
5use openthread_sys::otChangedFlags;
6
7extern "C" {
8 /// Handle OT state change in platform radio
9 pub fn platformRadioHandleStateChange(instance: *mut otsys::otInstance, flags: otChangedFlags);
10}