df_ddc 0.1.1

DDC/CI monitor control backend.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Platform-specific DDC/CI backend implementations.

/// Windows DDC/CI backend using `HighLevelMonitorConfigurationAPI`.
// SAFETY: This module uses `unsafe` for Win32 GDI FFI calls.
#[cfg(target_os = "windows")]
#[allow(unsafe_code)]
pub mod ddc_win;

/// Linux DDC/CI backend using raw I2C via `i2c-dev`.
#[cfg(target_os = "linux")]
pub mod ddc_linux;

/// Debug / logging utilities for DDC/CI operations.
pub mod ddc_debug;