Files

19 lines
430 B
C++
Raw Permalink Normal View History

2024-08-02 17:04:37 +08:00
#pragma once
#include "stdafx.hpp"
namespace VSW::Materializer {
2024-08-02 17:04:37 +08:00
namespace ExportScript {
void Export(CKContext* ctx, const YYCC::yycc_u8string_view& db_path, UINT code_page);
2024-08-02 17:04:37 +08:00
}
namespace ExportDocument {
void Export(CKContext* ctx, const YYCC::yycc_u8string_view& db_path, UINT code_page);
2024-08-02 17:04:37 +08:00
}
namespace ExportEnvironment {
void Export(CKContext* ctx, const YYCC::yycc_u8string_view& db_path, UINT code_page);
2024-08-02 17:04:37 +08:00
}
}