00001 /************************************************************************************ 00002 * 00003 * smSendTxtBuff.h 00004 * 00005 * synopsis: Constants which are needed by smSendTxtBuff.c. 00006 * Prototype of smSendTxtBuff(), state machine for text buffer reads and 00007 * tellTxtBuffSM(), which writes text buffer structure addresses to the 00008 * reply buffer during initialization. 00009 * 00010 * related files: 00011 * smSendTxtBuff.c: Contains the state machine for text buffer reads. 00012 * 00013 * Damon Fasching, UW Madison (510)486-5230 fasching@wisconsin.cern.ch 00014 ************************************************************************************/ 00015 00016 #ifndef SM_SEND_TXT_BUFF 00017 #define SM_SEND_TXT_BUFF 00018 00019 #include "processor.h" 00020 00021 /* number of text buffers and text buffer indicies */ 00022 00023 #define ERR_BUFF 0 00024 #define INFO_BUFF 1 00025 #define DIAG_BUFF 2 00026 #define XFER_BUFF 3 00027 00028 #define N_TXT_BUFFS 4 00029 00030 #endif 00031