IArrow.h
上传用户:yulinhuamu
上传日期:2009-12-26
资源大小:7287k
文件大小:0k
源码类别:

BREW编程

开发平台:

Visual C++

  1. #ifndef _IMINEARROW_H
  2. #define _IMINEARROW_H
  3. #include "Aeestdlib.h"
  4. #include "AEEshell.h"
  5. #include "AeeDisp.h"
  6. #include "AeeBitmap.h"
  7. typedef struct _IMineArrow
  8. { IBitmap* m_OldScreen;
  9. IImage* m_Arrow;
  10. int m_dx;
  11. int m_dy;
  12. IShell* m_pIShell;
  13. IDisplay* m_pDisplay;
  14. }IMineArrow;
  15. IMineArrow* IARROW_CreateInstance(AEEApplet* pApp);
  16. boolean IARROW_Release(IMineArrow* pArrow);
  17. boolean IARROW_Draws(IMineArrow* pArrow,int x,int y);
  18. #endif