$save nolist /* *============================================================================ * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE * * Permission to use for any purpose, modify, copy, and make enhancements * and derivative works of the software is granted if attribution is given to * R.M. Gillmore, dba the ACME Software Deli, as the author * * While the ACME Software Deli does not work for money, there is nonetheless * a significant amount of work involved. The ACME Software Deli maintains the * rights to all code written, though it may be used and distributed as long as * the following conditions are maintained. * * 1. The copyright statement at the top of each code block is maintained in * your distribution. * 2. You do not identify yourself as the ACME Software Deli * 3. Any changes made to the software are sent to the ACME Software Deli *============================================================================ */ $if not COMNDEFS_EXT_INCLUDED $set (COMNDEFS_EXT_INCLUDED) /* * $Id: comnDefs.ext 1157 2025-05-05 00:35:39Z rmgillmore $ */ declare NULL literally 'NIL'; declare BELL literally '07h', TAB literally '09h', LF literally '0ah', FF literally '0ch', CR literally '0dh', SPACE literally '020h', DBL_QUOTE literally '022h', SGL_QUOTE literally '027h', ESC literally '01bh', NUL literally '0', EOS literally 'NUL', ASTERISK literally '''*''', HYPHEN literally '''-''', PERIOD literally '''.''', QUESTION literally '''?''', char literally 'byte', qword literally '(2) dword'; declare FALSE literally '( 0 = 1 )', TRUE literally 'not FALSE', boolean literally 'byte'; declare MAX_PATH literally '260', MAX_LINE literally '1024', MAX_FILENAME literally '256', PATH_DELIM literally '''\''', PATH_DELIM_STR literally '@( ''\'', 0 )'; declare LOCAL_VARS literally 'reentrant'; $endif $restore