From ab0d7697c3038537c983dbedd52046fe27022d70 Mon Sep 17 00:00:00 2001 From: Nikolay Nikolov Date: Mon, 20 Sep 2021 04:47:51 +0300 Subject: [PATCH] + added the TWasmLinkingSubsectionType enum --- compiler/wasmbase.pas | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/compiler/wasmbase.pas b/compiler/wasmbase.pas index 1cc4e95e9a..ce2c4697b8 100644 --- a/compiler/wasmbase.pas +++ b/compiler/wasmbase.pas @@ -65,6 +65,12 @@ type R_WASM_TABLE_INDEX_I64 = 19, R_WASM_TABLE_NUMBER_LEB = 20); + TWasmLinkingSubsectionType = ( + WASM_SEGMENT_INFO = 5, + WASM_INIT_FUNCS = 6, + WASM_COMDAT_INFO = 7, + WASM_SYMBOL_TABLE = 8); + implementation end.