From: George H. <geo...@us...> - 2011-11-20 19:40:29
|
Update of /cvsroot/win32forth/win32forth/Help/html In directory vz-cvs-4.sog:/tmp/cvs-serv32409 Modified Files: dexh-Callback.htm dexh-HelpMain.htm dexh-interpif.htm Log Message: Updated docs. Index: dexh-Callback.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/dexh-Callback.htm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** dexh-Callback.htm 13 Jun 2009 11:05:59 -0000 1.3 --- dexh-Callback.htm 20 Nov 2011 19:40:26 -0000 1.4 *************** *** 17,20 **** --- 17,25 ---- to V6.06.xx always used the CONUSER pointer for this so callbacks were restricted to the main (console) task only). It is important to remember a normal xt will not work as a callback. + </p><p>Win32Forth now supports assynchronous callbacks (since V6.16.xx) as used in the multi media (Winmm) + API. Since these create a new thread Win32Forth creates a USER area the first time it runs and leaves + space for it subsequently. NOTE versions up to V6.04.xx could run assynchronous callbacks, but since + they shared the main tasks USER area they had restrictions on use of LOCALs USER variables etc. These + restrictions no longer apply. </p><h2>Glossary </h2><p><b><code>: __STDCALL ( -- ) \ w32f sys Index: dexh-HelpMain.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/dexh-HelpMain.htm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dexh-HelpMain.htm 28 May 2008 04:01:07 -0000 1.2 --- dexh-HelpMain.htm 20 Nov 2011 19:40:26 -0000 1.3 *************** *** 49,55 **** </p><ul><li>a set of hand-written html pages (names beginning with "<b>w32f-</b>")<br /> plus htm files in the help\html subdirs forthform, dpans and guides ! </li><li>a set of dexh-generated help pages (names beginning with "<b>dexh-</b>" or "<b>clas-</b>")<br /> (please have a look at the dexh documentation next to this page) ! </li><li>an help summary, describing, for each html page, its hierarchy and link. </li></ul><h3>Maintaining the hand-written help pages : </h3><p>Theese are basic-html pages. We suggest you use a simple text editor to edit --- 49,55 ---- </p><ul><li>a set of hand-written html pages (names beginning with "<b>w32f-</b>")<br /> plus htm files in the help\html subdirs forthform, dpans and guides ! </li><li>a set of dexh-generated help pages (names beginning with "<b>dexh-</b>" or "<b>class-</b>")<br /> (please have a look at the dexh documentation next to this page) ! </li><li>a help summary, describing, for each html page, its hierarchy and link. </li></ul><h3>Maintaining the hand-written help pages : </h3><p>Theese are basic-html pages. We suggest you use a simple text editor to edit Index: dexh-interpif.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/dexh-interpif.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dexh-interpif.htm 15 May 2008 06:28:27 -0000 1.1 --- dexh-interpif.htm 20 Nov 2011 19:40:26 -0000 1.2 *************** *** 10,14 **** <body> <h1>Interpretive conditionals in Win32Forth ! </h1><p>Win32Forth supports the ANSI interpretive from the tools extension wordset, with some W32F specific extensions as well as an alternative set based on the 'C' style words #if #else #then etc. --- 10,14 ---- <body> <h1>Interpretive conditionals in Win32Forth ! </h1><p>Win32Forth supports the ANSI interpretive conditionals from the tools extension wordset, with some W32F specific extensions as well as an alternative set based on the 'C' style words #if #else #then etc. |