eTcl 1.0-rc24 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News eTcl 1.0-rc24 (Default branch)
# 1  
Old 12-24-2007
eTcl 1.0-rc24 (Default branch)

ImageeTcl is a "batteries-included" thread-enabledTcl/Tk runtime available as a single standaloneexecutable. It includes several popularextensions (Thread, Sqlite, Zlib, etc.), togetherwith a Tcl wrapper for the Pixane image processing library.License: Free To Use But RestrictedChanges:
eTcl is now based on Tcl/Tk 8.5.0, and inheritsits numerous goodies, such as speedup of the newbytecode engine, integrated arbitrary-precisionarithmetic, and new skinnable widgets. The Tcl APIfor Odyce has been stabilized and allows dynamiccompilation of most Tcl/Tk extensions on all x86and ARM architectures in just a few hundreds ofmilliseconds, making it a viable alternative toshared libraries for deployment. The Pixanepackage exposes more transformations (e.g.arbitrary image rotations) at the Tcl level, andits memory footprint has been reduced.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Tcl_GetVersion(3)					      Tcl Library Procedures						 Tcl_GetVersion(3)

__________________________________________________________________________________________________________________________________________________

NAME
Tcl_GetVersion - get the version of the library at runtime SYNOPSIS
#include <tcl.h> Tcl_GetVersion(major, minor, patchLevel, type) ARGUMENTS
int *major (out) Major version number of the Tcl library. int *minor (out) Minor version number of the Tcl library. int *patchLevel (out) The patch level of the Tcl library (or alpha or beta number). Tcl_ReleaseType *type (out) The type of release, also indicates the type of patch level. Can be one of TCL_ALPHA_RELEASE, TCL_BETA_RELEASE, or TCL_FINAL_RELEASE. _________________________________________________________________ DESCRIPTION
Tcl_GetVersion should be used to query the version number of the Tcl library at runtime. This is useful when using a dynamically loaded Tcl library or when writing a stubs-aware extension. For instance, if you write an extension that is linked against the Tcl stubs library, it could be loaded into a program linked to an older version of Tcl than you expected. Use Tcl_GetVersion to verify that fact, and possi- bly to change the behavior of your extension. Tcl_GetVersion accepts NULL for any of the arguments. For instance if you do not care about the patchLevel of the library, pass a NULL for the patchLevel argument. KEYWORDS
version, patchlevel, major, minor, alpha, beta, release Tcl 7.5 Tcl_GetVersion(3)