From: Dirk B. <db...@us...> - 2006-01-13 17:50:41
|
Update of /cvsroot/win32forth/win32forth/src/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26243/src/tools Modified Files: DexH-CreateDocs.f Log Message: Added documentation for the Accelerator table support and the file I/O classes Index: DexH-CreateDocs.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/tools/DexH-CreateDocs.f,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** DexH-CreateDocs.f 13 Jan 2006 12:07:28 -0000 1.5 --- DexH-CreateDocs.f 13 Jan 2006 17:50:33 -0000 1.6 *************** *** 5,14 **** internal ! : create-doc ( addr len -- ) Prepend<home>\ (dex) ; external ! : create-class-docs ( -- ) W32FClassDocs --- 5,18 ---- internal ! : create-doc ( addr len -- ) Prepend<home>\ (dex) ; external ! : create-docs ( -- ) \ W32F tool ! \ *G Create the documentation for Win32Forth from ! \ ** the source files ! ! \ classes W32FClassDocs *************** *** 21,29 **** s" src\controls.f" create-doc s" src\lib\MdiDialog.f" create-doc - s" src\lib\AXControl.F" create-doc s" src\lib\HTMLcontrol.F" create-doc - \ GDI class library s" src\gdi\gdiStruct.f" create-doc --- 25,31 ---- *************** *** 37,40 **** --- 39,50 ---- s" src\gdi\gdiWindowDC.f" create-doc s" src\gdi\gdiMetafileDC.f" create-doc + + \ other classes + s" src\lib\file.f" create-doc + + \ other documentation + W32FDocs + + s" src\lib\AcceleratorTables.f" create-doc ; *************** *** 42,44 **** cls ! create-class-docs --- 52,54 ---- cls ! create-docs |