/********************************************************************* | |
Copyright 2007 by ZTE Corporation. | |
* | |
* FileName:: version.h | |
* File Mark: | |
* Description: | |
* Others: | |
* Version: v0.5 | |
* Author: zhangyingjun | |
* Date: 2009-03-26 | |
* History 1: | |
* Date: | |
* Version: | |
* Author: | |
* Modification: | |
* History 2: | |
**********************************************************************/ | |
#ifndef _APP_VERSION_H | |
#define _APP_VERSION_H | |
#include "version_number.h" | |
#define LEN 25 /*the maximum length of each version number*/ | |
/*this struct contains each version number,and each array saves the version number */ | |
typedef struct | |
{ | |
char Plat[LEN]; | |
char Ps[LEN]; | |
char Pl[LEN]; | |
char MMI[LEN]; | |
char System[LEN]; | |
}T_Version; | |
/************************************************************************** | |
* Function: zSys_Getversion | |
* Description: get version number | |
* Parameters: | |
* Input: | |
* None | |
* Output: None | |
* Returns: &gVersionNmuber | |
* | |
* Others: None | |
**************************************************************************/ | |
char * zSys_Getversion(void); | |
#endif |