diff options
author | joye <joye> | 2014-04-15 18:34:01 (GMT) |
---|---|---|
committer | joye <joye> | 2014-04-15 18:34:01 (GMT) |
commit | 7f94129194a558d7cbfbaf23d16e010c11a33e12 (patch) | |
tree | 344ef589d6044285f6bb8ca07e4f150003ae7fb3 /src/bltOp.h | |
parent | 1826640f0e1684fd811b628792ef81b487359ad4 (diff) | |
download | blt-7f94129194a558d7cbfbaf23d16e010c11a33e12.zip blt-7f94129194a558d7cbfbaf23d16e010c11a33e12.tar.gz blt-7f94129194a558d7cbfbaf23d16e010c11a33e12.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src/bltOp.h')
-rw-r--r-- | src/bltOp.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/bltOp.h b/src/bltOp.h index 8ab1980..04c584f 100644 --- a/src/bltOp.h +++ b/src/bltOp.h @@ -30,6 +30,16 @@ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#include <tcl.h> +#ifdef USE_TCL_STUBS +#include <tclInt.h> +#endif + +#include <tk.h> +#ifdef USE_TK_STUBS +#include <tkInt.h> +#endif + typedef struct { const char *name; /* Name of operation */ int minChars; /* Minimum # characters to disambiguate */ @@ -51,7 +61,7 @@ typedef enum { #define BLT_OP_BINARY_SEARCH 0 #define BLT_OP_LINEAR_SEARCH 1 -extern void *Blt_GetOpFromObj(Tcl_Interp* interp, int nSpecs, - Blt_OpSpec *specs, int operPos, int objc, Tcl_Obj* const objv[], - int flags); +void *Blt_GetOpFromObj(Tcl_Interp* interp, int nSpecs, + Blt_OpSpec *specs, int operPos, int objc, + Tcl_Obj* const objv[], int flags); |