mirror of
https://github.com/lifegpc/msg-tool.git
synced 2026-06-08 22:08:47 +08:00
Add support to import escude archive
This commit is contained in:
@@ -116,12 +116,12 @@ impl Script for EscudeBinScript {
|
||||
.collect())
|
||||
}
|
||||
|
||||
fn import_messages(
|
||||
&self,
|
||||
fn import_messages<'a>(
|
||||
&'a self,
|
||||
messages: Vec<Message>,
|
||||
mut writer: Box<dyn WriteSeek>,
|
||||
mut writer: Box<dyn WriteSeek + 'a>,
|
||||
encoding: Encoding,
|
||||
replacement: Option<&ReplacementTable>,
|
||||
replacement: Option<&'a ReplacementTable>,
|
||||
) -> Result<()> {
|
||||
writer.write_all(b"ESCR1_00")?;
|
||||
let mut offsets = Vec::with_capacity(messages.len());
|
||||
|
||||
Reference in New Issue
Block a user