📄 uservar.c
字号:
/************************************************************************//* SISCO SOFTWARE MODULE HEADER *****************************************//************************************************************************//* (c) Copyright Systems Integration Specialists Company, Inc., *//* 1986-1997 All Rights Reserved *//* *//* MODULE NAME : uservar.c *//* PRODUCT(S) : MMSEASE *//* *//* MODULE DESCRIPTION : *//* User variable declaration and type definition initialization. *//* *//* GLOBAL FUNCTIONS DEFINED IN THIS MODULE : *//* *//* MODIFICATION LOG : *//* Date Who Rev Comments *//* -------- --- ------ ------------------------------------------- *//* 11/29/01 EJV 01 Del code for old LATT, XENIX, ultrix, RMX86. *//* 04/15/97 DSF 7.00 MMSEASE 7.0 release. See MODL70.DOC for *//* history. *//************************************************************************/#include "glbtypes.h" /* portable redefinitions */#include "sysincs.h"#include "mms_usr.h" /* general MMS definitions */#include "mmsop_en.h"#include "gvaldefs.h"#include "userdefs.h"/************************************************************************//* application variables *//************************************************************************/ST_INT *listen_sel; /* listen channel selects *//************************************************************************/static ST_VOID nofun (ST_VOID);static ST_VOID nofun (ST_VOID) { }ST_VOID (*menu_set_fun)(ST_VOID) = nofun; /* used to reset the menu *//************************************************************************//* For debug version, use a static pointer to avoid duplication of *//* __FILE__ strings. *//************************************************************************/#ifdef DEBUG_SISCOstatic ST_CHAR *thisFileName = __FILE__;#endif/************************************************************************//* These data elements are buffers allocated at powerup due to their *//* size. */ST_CHAR *dest_buffer; /* destination buffer [10000] */ST_CHAR *source_buf; /* write data source buffer [1020] */ST_CHAR *nxt_buf;ST_CHAR *tbuf; /* 100 byte buffer */ST_CHAR *logical_mem; /* create logical memory space */ST_CHAR *log_mem_start; /* parameters used to access it */ST_INT log_mem_len = LOG_MEM_BUF_SIZE;/************************************************************************//* The variables below are used to implement a continuous data send *//* system, which may be used to measure the response time for a request *//************************************************************************/ST_BOOLEAN resp_rcvd; /* set when the response is received */time_t cont_start_time; /* time first sent */ST_INT rep_count; /* number of repetitions done */ST_INT num_reps; /* number to do */ST_BOOLEAN cont_print_flag; /* set != 0 to print running count */ST_INT num_outstanding; /* number of outstanding requests */ST_INT pipelength = 1; /* number of messages is the pipeline *//************************************************************************/ST_RET u_mllp_a_assoc_ind_ret = SD_SUCCESS;ST_INT u_init_ind_resp_mode = U_INIT_IND_RESP_OK;/************************************************************************/#ifdef VM_ULDLULDL_CTRL *uldl_ctrl_tbl = NULL;#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -