ScoreListWnd.h
Upload User: shyhai1508
Upload Date: 2007-06-11
Package Size: 48k
Code Size: 1k
Category:

BREW

Development Platform:

Visual C++

  1. #ifndef _SCORELISTWND_H_
  2. #define _SCORELISTWND_H_
  3. #include "AEEFile.h"
  4. #include "commondef.h"
  5. typedef struct _PflyApp PflyApp;
  6. typedef struct _ScoreListWnd ScoreListWnd;
  7. struct _ScoreListWnd
  8. {
  9. PflyApp* pMe;
  10. int scorelist[MAX_LIST_LENGTH];
  11. };
  12. boolean ScoreListWnd_New(ScoreListWnd *pthis, PflyApp* pMe);
  13. boolean ScoreListWnd_Open(ScoreListWnd *pthis);
  14. void ScoreListWnd_Close(ScoreListWnd *pthis);
  15. boolean ScoreListWnd_HandleEvent(ScoreListWnd* pthis, AEEEvent eCode, uint16 wParam, uint32 dwParam);
  16. void ScoreListWnd_Free(ScoreListWnd* pthis);
  17. boolean ScoreListWnd_AddToList(ScoreListWnd* pthis, int score);
  18. #endif