mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
MusicMod: Moved it from Branches to Externals, I guess there usually is no Branches dir in the trunk dir, so this may look a little better
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2174 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
65
Externals/MusicMod/Player/Src/Playlist.h
vendored
Normal file
65
Externals/MusicMod/Player/Src/Playlist.h
vendored
Normal file
@ -0,0 +1,65 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Plainamp, Open source Winamp core
|
||||
//
|
||||
// Copyright <20> 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 PA_PLAYLIST_H
|
||||
#define PA_PLAYLIST_H
|
||||
|
||||
|
||||
|
||||
#include "Global.h"
|
||||
#include "PlaylistControler.h"
|
||||
#include "PlaylistView.h"
|
||||
|
||||
|
||||
#define PLAINAMP_PL_REM_SEL 50004
|
||||
#define PLAINAMP_PL_REM_CROP 50005
|
||||
|
||||
|
||||
|
||||
extern HWND WindowPlaylist;
|
||||
|
||||
extern PlaylistControler * playlist;
|
||||
|
||||
namespace Playlist
|
||||
{
|
||||
bool Create();
|
||||
/*
|
||||
int GetCurIndex();
|
||||
int GetMaxIndex();
|
||||
bool SetCurIndex( int iIndex );
|
||||
*/
|
||||
TCHAR * GetFilename( int iIndex );
|
||||
|
||||
int GetFilename( int iIndex, char * szAnsiFilename, int iChars );
|
||||
int GetTitle( int iIndex, char * szAnsiTitle, int iChars );
|
||||
|
||||
bool DialogOpen();
|
||||
bool DialogSaveAs();
|
||||
|
||||
bool AppendPlaylistFile( TCHAR * szFilename );
|
||||
bool ExportPlaylistFile( TCHAR * szFilename );
|
||||
/*
|
||||
bool Append( TCHAR * szDisplay, TCHAR * szFilename );
|
||||
bool Add( int iIndex, TCHAR * szDisplay, TCHAR * szFilename );
|
||||
|
||||
bool Clear(); // aka RemoveAll()
|
||||
bool RemoveSelected();
|
||||
bool Crop(); // aka RemoveUnselected
|
||||
|
||||
bool SelectZero();
|
||||
bool SelectAll();
|
||||
*/
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif // PA_PLAYLIST_H
|
Reference in New Issue
Block a user