audible.h

来自「基于EP7312的MP3播放器源代码,包括MCU和PC端代码.」· C头文件 代码 · 共 89 行

H
89
字号
//****************************************************************************//// AUDIBLE.H - Definition of the structure in AUDIBLE.DAT which contains the//             Audible meta-data for all Audible programs on the Internet//             Audio Player.//// Copyright (c) 2000 Cirrus Logic, Inc.////****************************************************************************//****************************************************************************//// This structure defines the block of meta-data contained in AUDIBLE.DAT.////****************************************************************************typedef struct{    //    // The title of this program.    //    unsigned short pusTitle[128];    //    // The product ID of this program.    //    char pcProductID[80];    //    // The parent product ID of this program (used for subscriptions).    //    char pcParentProductID[80];    //    // Indicates if this program is a subscription.    //    unsigned char ucSubscription;    //    // Indicates the update mode for non-subscription programs.    //    unsigned char ucUpdateModeSingle;    //    // Indicates the update mode for subscription programs.    //    unsigned char ucUpdateModeRecurring;    //    // Indicates that the program has been played through.    //    unsigned char ucPlayedThrough;    //    // The starting time of the portion of the program contained in this file,    // specified in milliseconds.    //    unsigned long ulProgramStart;    //    // The amount of time in the portion of the program contained in this file,    // specified in milliseconds.    //    unsigned long ulAllocatedTime;    //    // The amount of time allocated in the file system for this file, specified    // in milliseconds.    //    unsigned long ulRequestedTime;    //    // The current play offset into the protion of the program contained in    // this file, specified in milliseconds.    //    unsigned long ulCurrentPosition;    //    // The number of sections in the portion of the program contained in this    // file.    //    unsigned long ulSections;    //    // The time offset of each section in the portion of the program contained    // in this file, specified in milliseconds.    //    unsigned long pulSectionStart[1];} tAudibleMetaData;

⌨️ 快捷键说明

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