aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorpatthoyts <patthoyts>2005-03-08 13:45:20 +0000
committerpatthoyts <patthoyts>2005-03-08 13:45:20 +0000
commit13e52adb1dea991b724c50d4e2019eda1f517cd5 (patch)
tree7c3effaecbdea990dfd9ff7696678a975434c5cd /jim.h
parentd5990c487e0cb9edbf973ff1a58ea45a1c767e1e (diff)
downloadjimtcl-13e52adb1dea991b724c50d4e2019eda1f517cd5.zip
jimtcl-13e52adb1dea991b724c50d4e2019eda1f517cd5.tar.gz
jimtcl-13e52adb1dea991b724c50d4e2019eda1f517cd5.tar.bz2
Added [info patchlevel] and setup argv0 and argv variables in jimsh.
Changed Jim_InteractivePrompt to take a pre-initialized interpreter.
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/jim.h b/jim.h
index 9d2cbc6..bf59b34 100644
--- a/jim.h
+++ b/jim.h
@@ -1,7 +1,7 @@
/* Jim - A small embeddable Tcl interpreter
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
*
- * $Id: jim.h,v 1.42 2005/03/07 20:34:16 antirez Exp $
+ * $Id: jim.h,v 1.43 2005/03/08 13:45:20 patthoyts Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -704,7 +704,7 @@ JIM_STATIC int JIM_API(Jim_RegisterApi) (Jim_Interp *interp,
JIM_STATIC void JIM_API(Jim_PrintErrorMessage) (Jim_Interp *interp);
/* interactive mode */
-JIM_STATIC int JIM_API(Jim_InteractivePrompt) (void);
+JIM_STATIC int JIM_API(Jim_InteractivePrompt) (Jim_Interp *interp);
/* Misc */
JIM_STATIC void JIM_API(Jim_Panic) (const char *fmt, ...);