diff options
Diffstat (limited to 'src/binaryen-c.h')
-rw-r--r-- | src/binaryen-c.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/binaryen-c.h b/src/binaryen-c.h index ee56afdad..82de2dae9 100644 --- a/src/binaryen-c.h +++ b/src/binaryen-c.h @@ -3258,6 +3258,11 @@ BINARYEN_API BinaryenIndex BinaryenTableGetMax(BinaryenTableRef table); // Sets the maximum number of pages of the specified `Table`. BINARYEN_API void BinaryenTableSetMax(BinaryenTableRef table, BinaryenIndex max); +// Gets the table type of the specified `Table`. +BINARYEN_API BinaryenType BinaryenTableGetType(BinaryenTableRef table); +// Sets the table type of the specified `Table`. +BINARYEN_API void BinaryenTableSetType(BinaryenTableRef table, + BinaryenType tableType); // // ========== Elem Segment Operations ========== |