⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.h

📁 使用USR和RockWell Modem的语音Modem程序
💻 H
字号:
//************************************************************// config.h - configuration classes for the spk client/server//  Author Eugene Anikin     anikin@anikin.ddns.org//************************************************************class ConfigInfo{   public:      char* SerialPort;      char* CommandSet;      // File with command-set of the modem      char* FirstActionFile; // Start with this response file. Section: "START"      char* GSPKPath;   // location of the Tcl/Tk script      char* Counter;      char* DefPath;    // Path to any file if it does not start with '/'      char* LockPath;   // Usually it is /var/lock      char* RunPath;    // Usually it is /var/run      int   CheckGSM;   // Should we check and remove GSM frames      int   TestLocal;  // Use local handset to test spk      int   PortSpeed;  // Port speed in voice mode      int   UseCallerID;// Whether we should use caller ID feature      int   SpkCapable; // Whether the modem is speakerphone-capable      ConfigInfo();      ConfigInfo(ConfigInfo* conf);      ~ConfigInfo();      void ReadConfig(char* FName);      void SaveConfig(char* FName);      // Make full path name from FName. If FName does not start      // with '/', it will be concatenated with DefPath.      char* CreateFullPath(char* FName);};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -