hello.h
上传用户:liaojie
上传日期:2021-10-23
资源大小:21k
文件大小:1k
源码类别:

BREW编程

开发平台:

Visual C++

  1. #ifndef  _HELLO_H_
  2. #define  _HELLO_H_
  3. typedef struct _CKeyApp 
  4.     AEEApplet a; // Mandatory first AEEApplet data member 
  5.     uint16 m_nYear ;        //年份
  6.     uint16 m_nMonth;        //月份
  7.     int16  m_nDay;          //日期
  8.     uint16 m_nHour;         //小时
  9.     uint16 m_nMinute;       //分钟
  10.     uint16 m_nSecond;       //秒
  11.     uint16 m_nWeek;         //一号是星期几
  12.     uint16 m_nToday;        //今天是几号
  13.     uint16 m_nFirstDay;     //一号是今年的第几天
  14.     // always have access to the hardware device information
  15.     AEEDeviceInfo  m_DeviceInfo; 
  16. }CKeyApp; 
  17. #endif