From: George H. <geo...@us...> - 2010-08-31 08:02:55
|
Update of /cvsroot/win32forth/win32forth/src In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv9273 Modified Files: Shell.f w32fMsg.f w32fMsgList.f Log Message: Updated application IDs and added a few dependencies Index: w32fMsgList.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/w32fMsgList.f,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** w32fMsgList.f 25 Jun 2008 21:51:36 -0000 1.3 --- w32fMsgList.f 31 Aug 2010 08:02:47 -0000 1.4 *************** *** 23,27 **** \ ------------------------------------------------------------------------------ ! \ The win32forth applications pool IDs are organized by release. Theese comments \ are indeed remainders of all the IDs already used. \ Notice that there is no reason for two different releases to communicate. So --- 23,27 ---- \ ------------------------------------------------------------------------------ ! \ The win32forth applications pool IDs are organized by release. These comments \ are indeed remainders of all the IDs already used. \ Notice that there is no reason for two different releases to communicate. So *************** *** 49,55 **** 3333 value w32fWinEd ! 6130 value w32fForth ! 6131 value w32fIDE ! 6132 value w32fHelp w32fIDE value w32fEditor \ current editor, defaults to IDE, can be WINED --- 49,55 ---- 3333 value w32fWinEd ! 6150 value w32fForth ! 6151 value w32fIDE ! 6152 value w32fHelp w32fIDE value w32fEditor \ current editor, defaults to IDE, can be WINED *************** *** 69,78 **** \ ------------------------------------------------------------------------------ ! \ Theese message numbers must be defined in all applications of the win32forth \ pool of applications so that they can communicate. The comments give, for \ each message, if it is an incoming or outgoing message and its use. \ Althought a sender and a receiver are specified while messaging, it is better \ to define different messages numbers accross all applications communicating. ! \ Also, theese messages are likely to be used by every release. \ The basic parameters for a message are "addr" "siz" of a data area --- 69,78 ---- \ ------------------------------------------------------------------------------ ! \ These message numbers must be defined in all applications of the win32forth \ pool of applications so that they can communicate. The comments give, for \ each message, if it is an incoming or outgoing message and its use. \ Althought a sender and a receiver are specified while messaging, it is better \ to define different messages numbers accross all applications communicating. ! \ Also, these messages are likely to be used by every release. \ The basic parameters for a message are "addr" "siz" of a data area *************** *** 139,143 **** 123606 constant ED_OPEN_BROWSE \ " file for browse only 123607 constant ED_WATCH \ " file for display source for debugger ! \ in theese 3 msgs, addr siz contains: \ cell1 = line number ; maxpath+1 = filename 123608 constant ED_NAME \ send currently debugged name --- 139,143 ---- 123606 constant ED_OPEN_BROWSE \ " file for browse only 123607 constant ED_WATCH \ " file for display source for debugger ! \ in these 3 msgs, addr siz contains: \ cell1 = line number ; maxpath+1 = filename 123608 constant ED_NAME \ send currently debugged name Index: w32fMsg.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/w32fMsg.f,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** w32fMsg.f 16 Jun 2010 19:48:31 -0000 1.16 --- w32fMsg.f 31 Aug 2010 08:02:47 -0000 1.17 *************** *** 112,115 **** --- 112,117 ---- \ ------------------------------------------------------------------------------ + Require mapfile.f + 0 value MyAppID \ *G My unique current win32forth application identifier \n Index: Shell.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/Shell.f,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Shell.f 9 Nov 2008 22:43:14 -0000 1.10 --- Shell.f 31 Aug 2010 08:02:47 -0000 1.11 *************** *** 15,18 **** --- 15,20 ---- \ [CreateProcess] is defined in w32fmsg.f + Require w32fmsg.f + 2 proc WaitForInputIdle 2 proc WaitForSingleObject |