refactor: add a dialog for choosing export encoding

This commit is contained in:
2024-08-03 17:11:34 +08:00
parent 4ee11c29c9
commit f179907a3a
13 changed files with 602 additions and 42 deletions

View File

@@ -1,18 +1,18 @@
#pragma once
#include "stdafx.hpp"
namespace YYCC::Materializer {
namespace VSW::Materializer {
namespace ExportScript {
void Export(CKContext* ctx, YYCC::yycc_u8string_view& db_path);
void Export(CKContext* ctx, const YYCC::yycc_u8string_view& db_path, UINT code_page);
}
namespace ExportDocument {
void Export(CKContext* ctx, YYCC::yycc_u8string_view& db_path);
void Export(CKContext* ctx, const YYCC::yycc_u8string_view& db_path, UINT code_page);
}
namespace ExportEnvironment {
void Export(CKContext* ctx, YYCC::yycc_u8string_view& db_path);
void Export(CKContext* ctx, const YYCC::yycc_u8string_view& db_path, UINT code_page);
}
}