www.pudn.com > tvctrl.rar > functv.h


#ifndef _FUNCTV_H_  
#define _FUNCTV_H_  
  
#include   
  
#define MAX_NAME	32   
#define MAX_PATH	32  
  
typedef struct tagFUNCITEM  
{//功能电视节目信息;  
	int		version;		//应用程序的当前版本号;							  
	int		lastversion;	//最新的版本号  
	int		exist;									//是否已下载;  
	int 	ziptype;	//压缩方法,如为0表示没有压缩;  
	int		index;									//在ListView中的顺序  
	struct	tm LastNoticeTime;						//上次提醒时间;  
	struct	tm NextNoticeTime;						//下次提醒时间;  
	char	caption[MAX_NAME + 1];					//显示的程序名称;		  
	char	layer[MAX_NAME + 1];							  
	char	url[MAX_PATH+MAX_NAME+1];				//文件的下载路径;  
	char	port[10];								//文件下载的端口;  
	char	root[MAX_PATH+1];						//文件的安装根目录;  
									  
	char	bkbmpfile[MAX_PATH+MAX_NAME+1];			//显示的图标;				  
	char	execfile[MAX_PATH+MAX_NAME+1];			//运行程序名称和路径;	  
}FUNCITEM,*PFUNCITEM;  
  
#endif /* end #ifndef _FUNCTV_H_ */