diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/formula/compiler.hrc | 4 | ||||
-rw-r--r-- | include/formula/opcode.hxx | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/formula/compiler.hrc b/include/formula/compiler.hrc index b9b4f7a40bb7..d8c45b21989d 100644 --- a/include/formula/compiler.hrc +++ b/include/formula/compiler.hrc @@ -414,8 +414,10 @@ #define SC_OPCODE_ST_DEV_S 416 #define SC_OPCODE_VAR_P_MS 417 #define SC_OPCODE_VAR_S 418 +#define SC_OPCODE_BETA_DIST_MS 419 +#define SC_OPCODE_BETA_INV_MS 420 -#define SC_OPCODE_STOP_2_PAR 419 /* last function with two or more parameters' OpCode + 1 */ +#define SC_OPCODE_STOP_2_PAR 421 /* last function with two or more parameters' OpCode + 1 */ #define SC_OPCODE_STOP_FUNCTION SC_OPCODE_STOP_2_PAR /* last function's OpCode + 1 */ #define SC_OPCODE_LAST_OPCODE_ID (SC_OPCODE_STOP_FUNCTION - 1) /* last OpCode */ diff --git a/include/formula/opcode.hxx b/include/formula/opcode.hxx index 6dd28d3967ce..5d96e07bc1bf 100644 --- a/include/formula/opcode.hxx +++ b/include/formula/opcode.hxx @@ -378,6 +378,8 @@ enum OpCodeEnum ocTableOp = SC_OPCODE_TABLE_OP, ocBetaDist = SC_OPCODE_BETA_DIST, ocBetaInv = SC_OPCODE_BETA_INV, + ocBetaDist_MS = SC_OPCODE_BETA_DIST_MS, + ocBetaInv_MS = SC_OPCODE_BETA_INV_MS, // Bit functions ocBitAnd = SC_OPCODE_BITAND, ocBitOr = SC_OPCODE_BITOR, |