📄 mediaplayliststructnew.h
字号:
/******************************************************************/
/* Copyright (C) 2007 ROCK-CHIPS FUZHOU . All Rights Reserved. */
/*******************************************************************
File : MediaFavoStructNew.h
Desc : 媒体库播放列表结构定义
Author: PengHuacheng
Date : 2007-12-02
Notes :
$Log :
*********************************************************************/
#ifndef _PLAYLISTSTRUCT_H
#define _PLAYLISTSTRUCT_H
#include "..\System\MediaSortNew\MediaSortGloableNew.h"
/* 播放列表信息结构体 */
typedef struct _PLAYLIST_STRUCT
{
char *pPlaylistMem; // 信息存放缓冲区
char *pBakMem; // 播放列表存放备份信息
UINT16 FileNum; // 文件数
UINT16 BakFileNum; // 文件数备份
char *pPath; // 信息存储路径
UINT16 NO; // 播放列表编号
UINT16 BusyFlag; // 使用标志
}PLAYLIST_STRUCT;
/* 播放列表存储信息结构体 */
typedef struct _PLAYLIST_INFO_STRUCT
{
UINT16 FileName[CHAR_NUM_PER_FILE_NAME+1];
char Path[FS_MAX_PATH_LEN];
char Name[12];
}PLAYLIST_INFO_STRUCT;
/* 播放列表统计信息结构体 */
typedef struct _PLAYLIST_STAT_STRUCT
{
UINT16 PlayListNum[PLAYLIST_NUM];
}PLAYLIST_STAT_STRUCT;
#endif
//******************************************************************************
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -