regioninit.h
来自「好记星的控件,包括button,list,对文件操作」· C头文件 代码 · 共 49 行
H
49 行
/****************************************************************************/
/* */
/* Copyright (C) 2005 SHENZHEN MEIJIN CO.LTD */
/* */
/* FILE NAME: RegionInit.h */
/* MODULE NAME: NULL */
/* DESCRIPTION: 本文件实现代码段、DATA段数据拷贝和BSS段清零功能的函数声明 */
/* This file contains the macro and supporting subroutines to */
/* copy RO code and RW data from ROM to RAM and zero-initialize*/
/* the ZI data areas in RAM. */
/* */
/****************************************************************************/
/* NAME DATE REMARKS */
/* ========== ============ ==============================================*/
/* 谢永良 2005-05-24 创建 */
/****************************************************************************/
#ifndef __REGIONINIT_H__
#define __REGIONINIT_H__
//void InitRORegions(void);
void InitRWRegions(void);
void InitZIRegions(void);
void InitExternZIRegions(void);
void DynamicLoadOptimizeCode(void);
void DynamicLoadG723Dec(void);
void DynamicLoadMP3DEC(void);
void DynamicLoadMP2DEC(void);
void DynamicLoadWMADEC(void);
void DynamicLoadWMAENC(void);
void DynamicLoadJpegDec(void);
void DynamicLoadAdpcmDec(void);
void DynamicLoadAdpcmEnc(void);
#if 0
void DynamicLoadMP3ENC(void);
void DynamicLoadOGGDEC(void);
void DynamicLoadTVFCOM(void);
void DynamicLoadTVFDEC(void);
void DynamicLoadTVFENC(void);
void DynamicLoadDRMRW(void);
void DynamicLoadFwUpgrade(void);
#endif
#endif // #ifndef __REGIONINIT_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?