app_guiobj_SystemInfo.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*******************************************************************************
  2. ** app_guiobj_SystemInfo.h : Description ......
  3. **
  4. ** Copyright(c) 2008 Sunmedia Technologies - All Rights Reserved
  5. ** Author : qin.he
  6. **
  7. ** $Id: app_guiobj_SystemInfo.h 1069 2012-08-04 11:44:32
  8. *******************************************************************************/
  9. #ifndef _APP_GUIOBJ_SYSTEMINFO_H_
  10. #define _APP_GUIOBJ_SYSTEMINFO_H_
  11. #define MAX_VERSION_LEN (16)
  12. #define DEFAULT_VERSION ("B0.0.1")
  13. /*struct*/
  14. typedef struct{
  15. HWND h_SystemInfo_List;
  16. HWND h_SystemInfo_Model;
  17. HWND h_SystemInfo_OAD;
  18. HWND h_SystemInfo_Software;
  19. HWND h_SystemInfo_Time;
  20. HWND h_SystemInfo_Hotline;
  21. HWND h_SystemInfo_Email;
  22. HWND h_SystemInfo_Homepage;
  23. }stSystemInfo_Handle_t;
  24. typedef struct
  25. {
  26. char Model[10];
  27. char OADVersion[10];
  28. UINT8 SoftwareVersion[MAX_VERSION_LEN];
  29. char UsedTime[20];
  30. } APP_SystemInfo_t;
  31. #endif
  32. /*****************************************************************************
  33. ** $Rev: 1069 $
  34. **
  35. *****************************************************************************/