📄 mmsaacse.c
字号:
/************************************************************************//* SISCO SOFTWARE MODULE HEADER *****************************************//************************************************************************//* (c) Copyright Systems Integration Specialists Company, Inc., *//* 1986 - 2001, All Rights Reserved. *//* *//* MODULE NAME : mmsaacse.c *//* PRODUCT(S) : MMSEASE *//* *//* MODULE DESCRIPTION : *//* This module contains functions to perform MMS SUIC services. *//* These functions are called from the mainloop (check_key). *//* *//* 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"#include "sysincs.h"#if (SYSTEM_SEL & (MSOFT | OS2))#ifndef __OS2__#include <dos.h>#endif#include <process.h>#endif#include "mms_usr.h" /* to access MMS fucntions, variables */#include "mmsop_en.h"#include "mms_pcon.h"#include "mms_vcon.h"#include "asn1defs.h" /* to access ASN.1 variables */#include "userdefs.h"#include "gvaldefs.h"#include "scrndefs.h"#include "fkeydefs.h" /* Function key handling */#include "suicacse.h"/************************************************************************//* For debug version, use a static pointer to avoid duplication of *//* __FILE__ strings. *//************************************************************************/#ifdef DEBUG_SISCOstatic ST_CHAR *thisFileName = __FILE__;#endif/************************************************************************//************************************************************************//************************************************************************//* comm_stat *//* SUIC function to display comm system status for debug *//************************************************************************/ST_VOID comm_stat (ST_VOID) {#if defined (MAP30_ACSE)register i; for (i = 0; i < s_max_chan; ++i) { CLEARSCR; printf ("\nChannel %d -",i); printf ("\nState Mask = %X",s_chan_info[i].state_mask); printf ("\nLocal Name = %s",s_chan_info[i].name); printf ("\nPartner Name = %s",s_chan_info[i].part_name); if (i < s_max_chan - 1) { printf ("\n Hit any key for channel %d status - ", i+1); wait_msg (""); } }#endif wait_msg (""); (*menu_set_fun) (); }/************************************************************************//* debug_set *//* SUIC menu function to select the level of debug messages *//************************************************************************/ST_VOID debug_set (ST_VOID) { CLEARSCR; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -