README MD-Track
--------------------------------------------------------------
Copyright (C) 2000 Tobias Schirmer <tobias.schirmer@foni.net>
--------------------------------------------------------------


Winamp seems to continue the <actual play time> even if the song 
has already ended. So it's very difficult to detect the end of 
the song.

Also Winamp has one second difference if we calculate the elapsed
time (taken from the API) compared to the Winamp-GUI. Thats why 
I add one second to time2:

	// time 1 == actual position in msec
	// time 2 == song length in sec
	time1 = SendMessage(hwnd_winamp,WM_WA_IPC,0,IPC_GETOUTPUTTIME);
	time2 = SendMessage(hwnd_winamp,WM_WA_IPC,1,IPC_GETOUTPUTTIME)+1;


At this time, we will cut some milliseconds from the beginning 
of the next song - not the best solution, I know.

I look for a better solution to make the track-marker at least 
100msec before the next song starts. Any ideas ???


Tobias Schirmer
