root/src/apps/mediaplayer/PlaybackState.h
/*
 * Copyright 2007-2009, Haiku. All rights reserved.
 * Distributed under the terms of the MIT License.
 *
 * Authors:
 *              Stephan Aßmus <superstippi@gmx.de>
 */
#ifndef PLAYBACK_STATE_H
#define PLAYBACK_STATE_H


enum {
        PLAYBACK_STATE_STOPPED  = 0,
        PLAYBACK_STATE_PLAYING  = 1,
        PLAYBACK_STATE_PAUSED   = 2,
};


#endif // PLAYBACK_STATE_H