linux_cec_sys/lib.rs
1/*
2 * Copyright © 2024 Valve Software
3 *
4 * Based in part on linux/cec.h
5 * Copyright 2016 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
6 * SPDX-License-Identifier: BSD-3-Clause
7 */
8
9#![cfg_attr(not(feature = "std"), no_std)]
10
11pub mod constants;
12pub mod ioctls;
13pub mod structs;
14
15pub use constants::*;
16pub use ioctls::*;
17pub use structs::*;
18
19pub type LogicalAddress = u8;
20pub type MessageHandlingMode = u32;
21pub type PhysicalAddress = u16;
22pub type Timestamp = u64;