1 // Copyright 2022 The Chromium OS 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. 4 5 // Do nothing on unix as the library is windows only. 6 #[cfg(not(windows))] main()7fn main() {} 8 9 #[cfg(windows)] main()10fn main() { 11 #[cfg(target_env = "msvc")] 12 windows::build!(Windows::Win32::Globalization::ImmDisableIME) 13 } 14