What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! General » .plp Files

.plp Files
Author: Message:
Patchou
Messenger Plus! Creator
*****

Avatar

Posts: 8607
Reputation: 201
43 / Male / Flag
Joined: Apr 2002
RE: .plp Files
Hello Brian,

many people have asked me about this by email recently so why not make the information completely public? here is the two data structs used by Messenger Plus! to create a plp file. It is provided as is and no support will be given for it.

If you create plp files, you MUST use the sound files generated by Messenger Plus! and saved in the Documents & Settings directory. You must also fill the data structure wilththe exact same information as contained inthe file (ID, category, Name, etc...). Failure to do so will result in the expulsion of the sound pack by Messenger Plus!.

Have fun :)
Patchou


//Sound Pack - File Header
struct SNDPACK_FILEHEADER
{
    char sTag[13]; // = "PLUS_SND_PACK"
    int nHeaderSize; //Starting after this variable
    int nSoundsCount;

    //SNDPACK_SOUND - sound packs, one after the other
};
#define SNDPACK_FILEHEADER_SIZE_V1 4

//Sound info block
struct SNDPACK_SOUND
{
    char sTag[3]; // = "SND"
    int nSoundInfoSize; //Starting after this variable
    __int64 nSoundID;
    int nCategory;
    int nFlags;

    char bIsNameUnicode;
    union
    {
        char sNameA[64];
        wchar_t sNameW[32];
    };

    int nSoundDataSize; //Size of the file
    //LPBYTE - sound file data - that's simply the whole mp3 file as stored by Messenger Plus! in its Data directory.
};
#define SNDPACK_SOUND_SIZE_V1 85

This post was edited on 04-15-2005 at 03:34 AM by Patchou.
[Image: signature2.gif]
04-15-2005 03:34 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
.plp Files - by brian on 04-15-2005 at 01:36 AM
RE: .plp Files - by Patchou on 04-15-2005 at 03:34 AM
RE: .plp Files - by CookieRevised on 05-30-2005 at 12:24 AM
RE: .plp Files - by brian on 06-30-2005 at 03:25 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On