remove_all_decoders

This commit is contained in:
Martin Kavík 2024-07-07 14:53:30 +02:00
parent deef698f8d
commit b2055ff22d
8 changed files with 46 additions and 1 deletions

View file

@ -1,4 +1,4 @@
use crate::{AddedDecodersCount, DecoderPath};
use crate::{AddedDecodersCount, DecoderPath, RemovedDecodersCount};
use wasmtime::component::{Component as WasmtimeComponent, *};
use wasmtime::{Engine, Store};
use wasmtime_wasi::{WasiCtx, WasiView};
@ -25,6 +25,10 @@ impl component::decoder::host::Host for State {
}
}
pub fn remove_all_decoders() -> RemovedDecodersCount {
156
}
// @TODO Make println work on Windows?
// https://github.com/tauri-apps/tauri/discussions/8626