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

📄 zhuzhu.h

📁 Effect vibrate in main menu. BREW SIEMENS SXG75.
💻 H
字号:

#include "AEEModGen.h" 
#include "AEEAppGen.h"
#include "AEEShell.h"
#include "AEEAppHist.h"
#include "AEEFile.h"
#include "AEEDB.h"
#include "AEENet.h"	
#include "AEESound.h"
#include "AEETapi.h"
#include "AEESource.h"
#include "zhuzhu.bid"

#define CONFIG_DIRECTORY		"config"
#define WORKING_DIRECTORY       "zhuzhu"
#define CONFIG_FILE             "zhuzhu.cfg"

#define CONFIG_KEEP_ACTIVE_APPLETS_KEY  "ACTIVE_APPLETS"
#define MAX_KEEP_APPLETS_COUNT  20


typedef struct _zhuzhu {
	AEEApplet      a ;	       
    AEEDeviceInfo  DeviceInfo; 

	struct _Config * pConfig;

	flg					m_pClose;
	ISound *            m_pSound;

} zhuzhu;

struct _Config {
    uint32   m_lKeepActiveApplets[MAX_KEEP_APPLETS_COUNT];
};

static  boolean zhuzhu_HandleEvent(zhuzhu* pMe, 
                                                   AEEEvent eCode, uint16 wParam, 
                                                   uint32 dwParam);
boolean zhuzhu_InitAppData(zhuzhu* pMe);
void    zhuzhu_FreeAppData(zhuzhu* pMe);
boolean zhuzhu_CheckApp(zhuzhu* pMe);
boolean zhuzhu_CheckAppNoSt(zhuzhu* pMe);
void zhuzhu_ParseConfigLine(zhuzhu* pMe, char * psz);
void zhuzhu_LoadConfig(zhuzhu* pMe);
void zhuzhu_LoadDefaultConfigValues(zhuzhu* pMe);
void zhuzhu_UnLoadConfigValues(zhuzhu* pMe);

⌨️ 快捷键说明

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