From: Rod O. <rod...@us...> - 2006-06-06 21:24:35
|
Update of /cvsroot/win32forth/win32forth/src/lib In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv22783/src/lib Modified Files: RebarControl.f sendmessage.f Log Message: Rod: Deprecated SendMessage.f, added SendMessage:Self to Generic-Window Index: sendmessage.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/lib/sendmessage.f,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** sendmessage.f 21 Dec 2004 00:19:10 -0000 1.1 --- sendmessage.f 6 Jun 2006 17:21:02 -0000 1.2 *************** *** 1,4 **** --- 1,13 ---- \ $Id$ + \ This file is now deprecated and does nothing when loaded. + \ SendMessage:Self is defined in the class Generic-Window in Generic.f. + \ + \ : SendMessage:Self ( lParam wParam message -- result ) hWnd call SendMessage ; + \ : SendMessage:SelfDrop ( lParam wParam message -- ) SendMessage:Self drop ; + \ + \ Applications that use controls which send messages to themselves are now 512 bytes smaller. + \ Tuesday, June 06 2006 18:09:33 Rod + Comment: This file was created for compatibility and to allow file sharing. Initially I *************** *** 12,14 **** Macro SendMessage:Self " hwnd Call SendMessage" - \s --- 21,22 ---- Index: RebarControl.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/src/lib/RebarControl.f,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RebarControl.f 5 Jun 2006 16:53:52 -0000 1.4 --- RebarControl.f 6 Jun 2006 17:21:02 -0000 1.5 *************** *** 11,17 **** :Class RebarControl <Super Control - : SendMessage:Self ( lParam wParam message -- result ) hWnd call SendMessage ; - : SendMessage:SelfDrop ( lParam wParam message -- ) SendMessage:Self drop ; - Record: REBARBBANDINFO int binfoSize --- 11,14 ---- |