Skip to content

Commit

Permalink
Merge branch 'windows-sys'
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jun 3, 2022
2 parents ee25446 + a95a288 commit 246ddc8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ doc = false
name = "open"

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["shellapi"] }
windows-sys = { version = "0.36", features = ["Win32_UI_Shell", "Win32_Foundation"] }

[target.'cfg(all(unix, not(macos)))'.dependencies]
pathdiff = "0.2.0"
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ impl IntoResult<Result> for io::Result<Output> {
}

#[cfg(windows)]
impl IntoResult<Result> for winapi::ctypes::c_int {
impl IntoResult<Result> for std::os::raw::c_int {
fn into_result(self) -> Result {
match self {
i if i > 32 => Ok(()),
Expand Down Expand Up @@ -214,8 +214,8 @@ impl CommandExt for Command {
mod windows {
use std::{ffi::OsStr, io, os::windows::ffi::OsStrExt, ptr};

use winapi::ctypes::c_int;
use winapi::um::shellapi::ShellExecuteW;
use std::os::raw::c_int;
use windows_sys::Win32::UI::Shell::ShellExecuteW;

use crate::{IntoResult, Result};

Expand All @@ -238,7 +238,7 @@ mod windows {
let operation: Vec<u16> = OsStr::new("open\0").encode_wide().collect();
let result = unsafe {
ShellExecuteW(
ptr::null_mut(),
0,
operation.as_ptr(),
path.as_ptr(),
ptr::null(),
Expand All @@ -259,7 +259,7 @@ mod windows {
.collect();
let result = unsafe {
ShellExecuteW(
ptr::null_mut(),
0,
operation.as_ptr(),
app_name.as_ptr(),
path.as_ptr(),
Expand Down

0 comments on commit 246ddc8

Please sign in to comment.