Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/mft.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/entry.rs')
-rw-r--r--src/entry.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/entry.rs b/src/entry.rs
index dade633..5935091 100644
--- a/src/entry.rs
+++ b/src/entry.rs
@@ -22,9 +22,9 @@ use std::io::{Cursor, Seek};
const SEQUENCE_NUMBER_STRIDE: usize = 512;
-const ZERO_HEADER: &'static [u8; 4] = b"\x00\x00\x00\x00";
-const BAAD_HEADER: &'static [u8; 4] = b"BAAD";
-const FILE_HEADER: &'static [u8; 4] = b"FILE";
+pub const ZERO_HEADER: &'static [u8; 4] = b"\x00\x00\x00\x00";
+pub const BAAD_HEADER: &'static [u8; 4] = b"BAAD";
+pub const FILE_HEADER: &'static [u8; 4] = b"FILE";
#[derive(Debug, Clone)]
pub struct MftEntry {