⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scorelistwnd.h

📁 《深入BREW&#61650 手机游戏开发》附录光盘例2——Chapter12.rar
💻 H
字号:
#ifndef _SCORELISTWND_H_
#define _SCORELISTWND_H_

#include "AEEFile.h"
#include "commondef.h"

typedef struct _PflyApp PflyApp;

typedef struct _ScoreListWnd ScoreListWnd;

struct _ScoreListWnd
{
	PflyApp*	pMe;
	int			scorelist[MAX_LIST_LENGTH];
};

boolean ScoreListWnd_New(ScoreListWnd *pthis, PflyApp* pMe);
boolean ScoreListWnd_Open(ScoreListWnd *pthis);
void ScoreListWnd_Close(ScoreListWnd *pthis);
boolean ScoreListWnd_HandleEvent(ScoreListWnd* pthis, AEEEvent eCode, uint16 wParam, uint32 dwParam);
void ScoreListWnd_Free(ScoreListWnd* pthis);
boolean ScoreListWnd_AddToList(ScoreListWnd* pthis, int score);

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -