scorelistwnd.h
来自「一个完整的BREW平台上的手机游戏」· C头文件 代码 · 共 24 行
H
24 行
#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 + =
减小字号Ctrl + -
显示快捷键?