The unified diff between revisions [5587f68e..] and [95cbeaa8..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'sqlite/vdbe.h'
# # # patch "sqlite/vdbe.h" # from [c8e105979fc7aaf5b8004e9621904e3bd096dfa2] # to [8729a4ee16ff9aeab2af9667df3cf300ff978e13] # ============================================================ --- sqlite/vdbe.h c8e105979fc7aaf5b8004e9621904e3bd096dfa2 +++ sqlite/vdbe.h 8729a4ee16ff9aeab2af9667df3cf300ff978e13 @@ -15,7 +15,7 @@ ** or VDBE. The VDBE implements an abstract machine that runs a ** simple program to access and modify the underlying database. ** -** $Id: vdbe.h,v 1.98 2005/09/07 21:22:47 drh Exp $ +** $Id: vdbe.h,v 1.99 2005/09/20 17:42:23 drh Exp $ */ #ifndef _SQLITE_VDBE_H_ #define _SQLITE_VDBE_H_ @@ -104,6 +104,7 @@ void sqlite3VdbeChangeP2(Vdbe*, int addr int sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp); void sqlite3VdbeChangeP1(Vdbe*, int addr, int P1); void sqlite3VdbeChangeP2(Vdbe*, int addr, int P2); +void sqlite3VdbeJumpHere(Vdbe*, int addr); void sqlite3VdbeChangeP3(Vdbe*, int addr, const char *zP1, int N); VdbeOp *sqlite3VdbeGetOp(Vdbe*, int); int sqlite3VdbeMakeLabel(Vdbe*);