14 lines
386 B
Rust
14 lines
386 B
Rust
// Copyright 2022 The Chromium OS Authors. All rights reserved.
|
|
// 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)
|
|
}
|