This file contains 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
[cmdcancel] | |
Tip=(|cffffcc00ESC|r) Cancel | |
Hotkey=512 | |
Buttonpos=3,2 | |
[cmdcancelbuild] | |
Tip=(|cffffcc00ESC|r) Cancel | |
Hotkey=512 | |
Buttonpos=3,2 |
This file contains 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
mp3 stop | |
echo loading config | |
_snd_mixahead 0.1 | |
ati_npatch 0 | |
bgmvolume 0 | |
MP3Volume 0 |
This file contains 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
fn f() { | |
let mut c: i64 = 1; | |
let d: i64 = 2; | |
let mut x: i64 = 3; | |
unsafe { | |
*(&mut x as *mut i64).sub(2) = 42; | |
} | |
println!("{c:?} {d:?} {x:?}"); |
This file contains 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
⠀ |
This file contains 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
⠀ |
This file contains 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
⠀ |
This file contains 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
⠀ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 sled; | |
use { | |
byteorder::{BigEndian}, | |
zerocopy::{ | |
byteorder::U64, AsBytes, FromBytes, LayoutVerified, Unaligned | |
} | |
}; | |
This file contains 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
extern crate unicase; | |
use std::{ | |
collections::HashMap, | |
iter::FromIterator, | |
fs | |
}; | |
use unicase::Ascii; |
NewerOlder