diff --git a/src/bytecode.h b/src/bytecode.h index 22d1bb4..c456d19 100644 --- a/src/bytecode.h +++ b/src/bytecode.h @@ -161,8 +161,7 @@ typedef enum { OP_SQLITE_CLOSE, // pops handle; pushes Nil OP_SQLITE_EXEC, // pops sql, handle; pushes sqlite rc (0=OK) OP_SQLITE_QUERY, // pops sql, handle; pushes array - - + // PCSC (smart card) opcodes OP_PCSC_ESTABLISH, // returns context id (>0) or 0 OP_PCSC_RELEASE, // pops ctx id; returns 1/0 @@ -181,8 +180,7 @@ typedef enum { OP_OPENSSL_SHA256, // pops data string; pushes sha256 hex string OP_OPENSSL_SHA512, // pops data string; pushes sha512 hex string OP_OPENSSL_RIPEMD160, // pops data string; pushes ripemd160 hex string - - + // INI (iniparser 4.2.6) optional OP_INI_LOAD, // pops path; pushes handle (>0) or 0 OP_INI_FREE, // pops handle; pushes 1/0 diff --git a/src/parser.c b/src/parser.c index 6a9a44d..6ec6a9d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -51,6 +51,7 @@ #include #include #include + /* from parser_utils.c */ extern char *preprocess_includes_with_path(const char *src, const char *current_path);