/*---------------------------------------------------------------------------* Project: MIDI adaptor sample demo File: midiqueue.h Programmer: HIRATSU Daisuke Copyright (C) 2007 Nintendo All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. $Log: midiqueue.h,v $ Revision 1.2 2007/04/17 08:25:02 hiratsu Refactoring. Revision 1.1 2007/04/13 08:40:26 hiratsu Initial check-in. *---------------------------------------------------------------------------*/ #ifndef MIDIQUEUE_H #define MIDIQUEUE_H #include void push(u8 a); void pop(void); BOOL front(u8 msg[3]); BOOL isReady(void); BOOL isSupportedCommand(const u8 cmd[3]); #endif // end of MIDIQUEUE_H