globals.h

来自「altera epxa1的例子程序」· C头文件 代码 · 共 20 行

H
20
字号
#ifndef _globals_
#define _globals_
 typedef struct
	{
	int tcp_plug_handle;
	int inquiry_number;
	
	
	int called_from_tcp_prc;
	int still_receiving_http_request;
		

	long tcp_opened_time; // So we can time out the connection
	                      // in case of a dangled-open connect.
	} ip_control_struct;
 
 ip_control_struct  tcp_control;
 
 
 #endif // _globals_

⌨️ 快捷键说明

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