1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*******************************************************************************
- ** app_guiobj_SystemInfo.h : Description ......
- **
- ** Copyright(c) 2008 Sunmedia Technologies - All Rights Reserved
- ** Author : qin.he
- **
- ** $Id: app_guiobj_SystemInfo.h 1069 2012-08-04 11:44:32
- *******************************************************************************/
- #ifndef _APP_GUIOBJ_SYSTEMINFO_H_
- #define _APP_GUIOBJ_SYSTEMINFO_H_
- #define MAX_VERSION_LEN (16)
- #define DEFAULT_VERSION ("B0.0.1")
- /*struct*/
- typedef struct{
- HWND h_SystemInfo_List;
- HWND h_SystemInfo_Model;
- HWND h_SystemInfo_OAD;
- HWND h_SystemInfo_Software;
- HWND h_SystemInfo_Time;
- HWND h_SystemInfo_Hotline;
- HWND h_SystemInfo_Email;
- HWND h_SystemInfo_Homepage;
- }stSystemInfo_Handle_t;
- typedef struct
- {
- char Model[10];
- char OADVersion[10];
- UINT8 SoftwareVersion[MAX_VERSION_LEN];
- char UsedTime[20];
- } APP_SystemInfo_t;
- #endif
- /*****************************************************************************
- ** $Rev: 1069 $
- **
- *****************************************************************************/
|