#define IPC_PLAYFILEW 1100
/* This is sent as a WM_COPYDATA with IPC_PLAYFILE as the dwData member and the string
** of the file / playlist to be enqueued into the playlist editor as the lpData member.
** This will just enqueue the file or files since you can use this to enqueue a playlist.
** It will not clear the current playlist or change the playback state.
**
** COPYDATASTRUCT cds = {0};
** cds.dwData = IPC_ENQUEUEFILE;
** cds.lpData = (void*)"c:\\test\\folder\\test.mp3";
** cds.cbData = lstrlen((char*)cds.lpData)+1; // include space for null char
** SendMessage(hwnd_winamp,WM_COPYDATA,0,(LPARAM)&cds);
**
**
** With 2.9+ and all of the 5.x versions you can send this as a normal WM_WA_IPC
** (non WM_COPYDATA) with an enqueueFileWithMetaStruct as the param.
** If the title member is null then it is treated as a "thing" otherwise it will be
** assumed to be a file (for speed).
**
** enqueueFileWithMetaStruct eFWMS = {0};
** eFWMS.filename = "c:\\test\\folder\\test.mp3";
** eFWMS.title = "Whipping Good";
** eFWMS.length = 300; // this is the number of seconds for the track
** SendMessage(hwnd_winamp,WM_WA_IPC,(WPARAM)&eFWMS,IPC_ENQUEUEFILE);
*/
ich möchte jetzt den dateipafd zum aktuell gespielten track abfragen nur werde ich aus diesen informationen nicht ganz schlüssig welche parameter ich hier jetzt verwenden muss..bis jetzt habe ich immer nur Integer werde abgefragt aber jetzt handelt es sich ja um einen string