00001 /* 00002 $Id: MKDeviceStatus.h 3623 2009-09-25 11:14:32Z leighsmith $ 00003 00004 Description: 00005 This file defines status protocol for the MusicKit "devices". 00006 MusicKit "devices" are objects that interface to a Mach device. 00007 The two MusicKit devices are MKMidi and MKOrchestra. 00008 00009 Copyright 1988-1992, NeXT Inc. All rights reserved. 00010 Portions Copyright 1999-2005, The MusicKit Project. 00011 */ 00012 #ifndef __MK_devstatus_H___ 00013 #define __MK_devstatus_H___ 00014 00044 typedef enum _MKDeviceStatus { 00046 MK_devClosed = 0, 00049 MK_devOpen, 00051 MK_devRunning, 00053 MK_devStopped 00054 } MKDeviceStatus; 00055 00056 #endif