2006-01-20 12:34:02 -03:00
|
|
|
/*
|
|
|
|
* Status.h
|
|
|
|
* Cog
|
|
|
|
*
|
2006-09-04 14:46:18 -04:00
|
|
|
* Created by Vincent Spader on 1/14/06.
|
|
|
|
* Copyright 2006 Vincent Spader. All rights reserved.
|
2006-01-20 12:34:02 -03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
2008-02-22 00:09:03 -03:00
|
|
|
kCogStatusStopped = 0,
|
|
|
|
kCogStatusPaused,
|
2006-01-20 12:34:02 -03:00
|
|
|
kCogStatusPlaying,
|
2021-01-06 05:39:12 -03:00
|
|
|
kCogStatusStopping,
|
2006-01-20 12:34:02 -03:00
|
|
|
};
|