1 /* 2 * Copyright 2007, Haiku. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Stephan Aßmus <superstippi@gmx.de> 7 */ 8 #ifndef PLAYBACK_STATE_H 9 #define PLAYBACK_STATE_H 10 11 enum { 12 PLAYBACK_STATE_STOPPED = 0, 13 PLAYBACK_STATE_PLAYING = 1, 14 PLAYBACK_STATE_PAUSED = 2, 15 }; 16 17 #endif // PLAYBACK_STATE_H 18