28 lines
629 B
C++
28 lines
629 B
C++
////////////////////////////////////////////////////////////////////////////////
|
|
// Plainamp, Open source Winamp core
|
|
//
|
|
// Copyright © 2005 Sebastian Pipping <webmaster@hartwork.org>
|
|
//
|
|
// --> http://www.hartwork.org
|
|
//
|
|
// This source code is released under the GNU General Public License (GPL).
|
|
// See GPL.txt for details. Any non-GPL usage is strictly forbidden.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#ifndef PLAYLIST_VIEW_H
|
|
#define PLAYLIST_VIEW_H 1
|
|
|
|
|
|
#include "Global.h"
|
|
|
|
namespace PlaylistView
|
|
{
|
|
void Create();
|
|
|
|
|
|
};
|
|
|
|
|
|
#endif // PLAYLIST_VIEW_H
|