资源简介

韦东山电子相册代码!!!!!!!!!!!!!!!!!

资源截图

代码片段和文件信息

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

#include 
#include 
#include 

#include 
#include 
#include 
#include 


/* digitpic  */
int main(int argc char **argv)
{
int iError;

/* 初始化调试模块: 可以通过“标准输出“也可以通过“网络“打印调试信息
 * 因为下面马上就要用到DBG_PRINTF函数 所以先初始化调试模块
 */

/* 注册调试通道 */
DebugInit();

/* 初始化调试通道 */
InitDebugChanel();

if (argc != 2)
{
DBG_PRINTF(“Usage:\n“);
DBG_PRINTF(“%s \n“ argv[0]);
return 0;
}

/* 注册显示设备 */
DisplayInit();
/* 可能可支持多个显示设备: 选择和初始化指定的显示设备 */
SelectAndInitDefaultDispDev(“fb“);

/* 
 * VideoMem: 为加快显示速度我们事先在内存中构造好显示的页面的数据
             (这个内存称为VideoMem)
 *           显示时再把VideoMem中的数据复制到设备的显存上
 * 参数的含义就是分配的多少个VideoMem
 * 参数可取为0 这意味着所有的显示数据都是在显示时再现场生成然后写入显存
 */
AllocVideoMem(5);

    /* 注册输入设备 */
InputInit();
    /* 调用所有输入设备的初始化函数 */
AllInputDevicesInit();

    /* 注册编码模块 */
    EncodingInit();

    /* 注册字库模块 */
iError = FontsInit();
if (iError)
{
DBG_PRINTF(“FontsInit error!\n“);
}

    /* 设置freetype字库所用的文件和字体尺寸 */
iError = SetFontsDetail(“freetype“ argv[1] 24);
if (iError)
{
DBG_PRINTF(“SetFontsDetail error!\n“);
}

    /* 注册图片文件解析模块 */
    PicFmtsInit();

    /* 注册页面 */
PagesInit();

    /* 运行主页面 */
Page(“main“)->Run(NULL);

return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       7045  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\debug\debug_manager.c

     文件         66  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\debug\Makefile

     文件      10440  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\debug\netprint.c

     文件       1416  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\debug\stdout.c

     文件      15927  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\display\disp_manager.c

     文件       6769  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\display\fb.c

     文件         38  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\display\Makefile

     文件       3845  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\encoding\ascii.c

     文件       9393  2013-02-22 18:36  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\encoding\encoding_manager.c

     文件        111  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\encoding\Makefile

     文件       3080  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\encoding\utf-16be.c

     文件       3079  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\encoding\utf-16le.c

     文件       5150  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\encoding\utf-8.c

     文件      12817  2013-03-06 19:40  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\file\file.c

     文件         15  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\file\Makefile

     文件     102928  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\fonts\ascii.c

     文件       6157  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\fonts\fonts_manager.c

     文件       5058  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\fonts\freetype.c

     文件       3878  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\fonts\gbk.c

     文件         81  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\fonts\Makefile

     文件        412  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\include\config.h

     文件       6441  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\include\debug_manager.h

     文件       9296  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\include\disp_manager.h

     文件      10356  2013-02-22 18:37  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\include\encoding_manager.h

     文件       4855  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\include\file.h

     文件       6860  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\include\fonts_manager.h

     文件       4319  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\include\input_manager.h

     文件       8723  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\include\page_manager.h

     文件       3894  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\include\picfmt_manager.h

     文件        914  2012-11-11 02:34  14.digial_photo_frame_最终源码_修改部分错误_2013.05.15\include\pic_operation.h

............此处省略43个文件信息

评论

共有 条评论