aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorantirez <antirez>2005-02-27 21:49:53 +0000
committerantirez <antirez>2005-02-27 21:49:53 +0000
commitcbe8a55428ef44675b1759e7d372feb144d9e13d (patch)
treebf0934c60276950228125d0787bd8627ed42a9b4 /README
parent8232ab72bb208c7e982455ce4421f5621e2981f5 (diff)
downloadjimtcl-cbe8a55428ef44675b1759e7d372feb144d9e13d.zip
jimtcl-cbe8a55428ef44675b1759e7d372feb144d9e13d.tar.gz
jimtcl-cbe8a55428ef44675b1759e7d372feb144d9e13d.tar.bz2
documentation changes, makefile modified to build jim-win32.dll
Diffstat (limited to 'README')
-rw-r--r--README27
1 files changed, 26 insertions, 1 deletions
diff --git a/README b/README
index dfa5368..2661530 100644
--- a/README
+++ b/README
@@ -7,8 +7,33 @@ Copyright (C) 2005 Salvatore Sanfilippo
All Rights Reserved
This software is under the APACHE 2.0 LICENSE
-ALSO THANKS TO:
+--------------------------------------------------------------------------------
+Extensions
+--------------------------------------------------------------------------------
+JIM-POSIX
+
+This is the start of a library that should export to Jim useful bits of the
+POSIX API. For now there are just a few utility functions, but it's
+an example on how to write a simple library for Jim.
+
+JIM-WIN32
+
+This is the start of a library that should export to Jim useful bits of the
+WIN32 API. Currently there is just one function that is used to call windows
+applications. For example run jim and try the extension with:
+
+ load jim-win32.dll
+ win32.shellexecute open notepad
+
+You should see a notepad application running.
+
+--------------------------------------------------------------------------------
+Thanks to...
+--------------------------------------------------------------------------------
+
+- First of all, thanks to every guy that's listed in the AUTHORS file,
+ that directly helped with code and ideas.
- Many people on the Tclers Chat that helped me to explore issues
about the use and the implementation of the Tcl programming language.
- David Welton for the tech info sharing and our chats about