This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "rust-simple-idispatch" | |
version = "0.1.0" | |
authors = ["Alexander Korolev <[email protected]>"] | |
edition = "2018" | |
[dependencies] | |
# com = { version = "0.3", features = [ "production" ] } | |
com = { git = "https://github.com/microsoft/com-rs", features = [ "production" ] } | |
winapi = { version = "0.3", features = [ "minwindef", "oaidl", "oleauto", "winnt", "wtypes", "wtypesbase" ] } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Taps | |
tap 'homebrew/cask-fonts' | |
tap 'homebrew/cask-versions' | |
tap 'heroku/brew' | |
# Install CLI Tools | |
## Shell Utilities | |
brew 'coreutils' | |
brew 'findutils' | |
brew 'autojump' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::mem; | |
use std::ptr; | |
use std::iter; | |
use std::marker::PhantomData; | |
use std::ffi::OsStr; | |
use std::os::windows::ffi::OsStrExt; | |
use std::os::raw; | |
use winapi::objbase; | |
use winapi::winerror; |