MusicKit  0.0.0
MKDeviceStatus.h
00001 /* 
00002   $Id$ 
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