refactor(plugins): physically remove legacy v1 ABI/init across all first-party plugins; exclude/remove legacy test-multibox crate

This commit is contained in:
Selfhosting Dev
2025-09-17 22:58:21 +09:00
parent b8e454963a
commit 1b12b1eb7d
19 changed files with 16 additions and 516 deletions

View File

@ -70,19 +70,7 @@ static INSTANCE_COUNTER: AtomicU32 = AtomicU32::new(1);
// ============ Plugin Entry Points ============
/// ABI version
#[no_mangle]
pub extern "C" fn nyash_plugin_abi() -> u32 {
1 // BID-1 support
}
/// Plugin initialization (optional - global setup)
#[no_mangle]
pub extern "C" fn nyash_plugin_init() -> i32 {
// グローバル初期化Lazy staticのため特に必要なし
eprintln!("[FileBox] Plugin initialized");
NYB_SUCCESS
}
// legacy v1 abi/init removed
/// Method invocation - 仮実装
/* legacy v1 entry removed