global.cpp
来自「Avaya AES Tsapi接口开发的 CallRouting 代码」· C++ 代码 · 共 28 行
CPP
28 行
#include "stdafx.h"
#include <hash_map>
#include <afxmt.h>
#include "Rule.h"
using namespace std;
using namespace stdext;
// declare all global variables here
// set DebugLevel high here to allow debugging to come out
// prior to setting to what the user selects via the GUI
int DebugLevel = 1;
CString DebugLevelStr;
bool PrivateDataNegotiated = false;
hash_map <unsigned long, CString> HashMap;
hash_map <unsigned long, CString> :: iterator HashMapIter;
CMutex Mtx;
CString TsapiFailureStr;
int g_collectedDigits;
CString g_appendString;
int g_callRoutingType;
CString g_vdn;
vector<CRule> rules;
int g_defaultRoute;
//Create iterator to access elements in the vector
vector<CRule>::iterator rulesIt ;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?