#[cfg(feature = "windows")]
pub const IS_WINDOWS: bool = true;
#[cfg(not(feature = "windows"))]
pub const IS_WINDOWS: bool = false;
#[cfg(feature = "unix")]
pub const IS_UNIX: bool = true;
#[cfg(not(feature = "unix"))]
pub const IS_UNIX: bool = false;
pub fn check_platform_support() {
if IS_WINDOWS {
eprintln!("=== Windows Support Notice ===");
eprintln!("splice on Windows is fully supported for refactoring.");
eprintln!();
eprintln!("splice applies patches and edits code directly.");
eprintln!("All features work identically across platforms.");
eprintln!("==================================");
}
}