blob: 35b05a800a743fb52d9fd6d243c9064e402f5252 [file] [edit]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Do nothing on unix as the library is windows only.
#[cfg(not(windows))]
fn main() {}
#[cfg(windows)]
fn main() {
#[cfg(target_env = "msvc")]
windows::build!(Windows::Win32::Globalization::ImmDisableIME)
}