CVS: setedit/setedit/include setapp.h,1.67,1.68
Brought to you by:
set
From: Salvador E. T. <se...@us...> - 2010-07-07 13:25:51
|
Update of /cvsroot/setedit/setedit/setedit/include In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv26667/setedit/include Modified Files: setapp.h Log Message: * Added: A mechanism to control the editor from another program using named pipes. Currently you can jump to an error or quit the editor. * Added: Editors now report to belong to a window class called SETEdit. Index: setapp.h =================================================================== RCS file: /cvsroot/setedit/setedit/setedit/include/setapp.h,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** setapp.h 25 Feb 2009 16:11:31 -0000 1.67 --- setapp.h 7 Jul 2010 13:25:42 -0000 1.68 *************** *** 415,418 **** --- 415,422 ---- static void cpCallBack(ushort *map); static uint32 getModifFilesOps() { return modifFilesOps; } + // Control pipe + static char *controlPipeName; + static FILE *controlPipeFILE; + static Boolean forceQuit; void tile(); |