stdafx_1.h

来自「C++实现的brew程序管理器例子」· C头文件 代码 · 共 39 行

H
39
字号
#if!defined(_STDAFX_H_)
#define	_STDAFX_H_

#define	EMULATOR_IMSI					"13301011012"

#ifdef WIN32
	//查询定购关系
	#define	QUERY_SUBSCRIPTION_URL			"http://218.249.100.56/BrewGatewayAgent/querysubscription.aspx?" 
	//查询程序信息接口(已定)
	#define QUERY_APPSINFO_URL				"http://218.249.100.56/BrewGatewayAgent/queryorderedproductlist.aspx?"//?ClassID=1100&IMSI=13301011012
	//查询服务接口
	#define QUERY_SERVICE_URL				"http://218.249.100.56/BrewGatewayAgent/queryservicelist.aspx?"//IMSI=13301011012&CatalogID=0
	//(未定)
	#define QUERY_UNAPPSINFO_URL			"http://218.249.100.56/BrewGatewayAgent/queryunorderedproductlist.aspx?"
	//定购
	#define ORDER_SUBSCRIPTION_URL			"http://218.249.100.56/BrewGatewayAgent/ordersubscription.aspx?"
	//(退定)
	#define CANCEL_ORDER_URL				"http://218.249.100.56/BrewGatewayAgent/cancelsubscription.aspx?"		
	//(续定)
	#define RENEW_ORDER_URL					"http://218.249.100.56/BrewGatewayAgent/renewsubscription.aspx?"
#else
	//-------------------------------private ip-----------------------------
	//查询定购关系
	#define	QUERY_SUBSCRIPTION_URL			"http://10.199.3.203/BrewGatewayAgent/querysubscription.aspx?" 
	//查询程序信息接口(已定)
	#define QUERY_APPSINFO_URL				"http://10.199.3.203/BrewGatewayAgent/queryorderedproductlist.aspx?"//?ClassID=1100&IMSI=13301011012
	//查询服务接口
	#define QUERY_SERVICE_URL				"http://10.199.3.203/BrewGatewayAgent/queryservicelist.aspx?"//IMSI=13301011012&CatalogID=0
	//(未定)
	#define QUERY_UNAPPSINFO_URL			"http://10.199.3.203/BrewGatewayAgent/queryunorderedproductlist.aspx?"
	//定购
	#define ORDER_SUBSCRIPTION_URL			"http://10.199.3.203/BrewGatewayAgent/ordersubscription.aspx?"
	//(退定)
	#define CANCEL_ORDER_URL				"http://10.199.3.203/BrewGatewayAgent/cancelsubscription.aspx?"		
	//(续定)
	#define RENEW_ORDER_URL					"http://10.199.3.203/BrewGatewayAgent/renewsubscription.aspx?"
#endif

#endif

⌨️ 快捷键说明

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