WMPTSE API: Difference between revisions
(→API) |
|||
Line 6: | Line 6: | ||
==API== | ==API== | ||
Every WMPTSE API application must export two function (c standard call): | Every WMPTSE API application must export two function (c standard call): | ||
BOOL Read<TagFormat>Tag( LPTSTR lpstrFileFullPath, METATAG * pMetaTag ) | |||
BOOL Write<TagFormat>Tag( LPTSTR lpstrFileFullPath, TAGITEM tagiChangedItem ) | |||
<TagFormat> will be the name of the corresponding tag format (APE, Vorbis, MPEG4). | <TagFormat> will be the name of the corresponding tag format (APE, Vorbis, MPEG4). |
Revision as of 11:33, 9 November 2006
The WMPTSE API is the interface between the WMPTSE plug-in and its "tag support dll".
A tag support dll give WMPTSE the ability to add support of a tag format in Windows Media Player. With the this "tag support dll" properly installed, files tagged with its format are readable inside WMP.
API
Every WMPTSE API application must export two function (c standard call):
BOOL Read<TagFormat>Tag( LPTSTR lpstrFileFullPath, METATAG * pMetaTag ) BOOL Write<TagFormat>Tag( LPTSTR lpstrFileFullPath, TAGITEM tagiChangedItem )
<TagFormat> will be the name of the corresponding tag format (APE, Vorbis, MPEG4). It will be search by WMPTSE during the load process.
Definition
All types and definition are declared in WMPTSE.h. It is simple to developper to just include it at first.