home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / beaversweeper_v101.zip / src / MIDIReceptor.h < prev    next >
C/C++ Source or Header  |  2003-01-06  |  434b  |  22 lines

  1. #ifndef __MIDIRECEPTOR_H__
  2. #define __MIDIRECEPTOR_H__
  3.  
  4. // Saker som vill ta emot midi kan Σrva frσn denna!
  5.  
  6. class MIDIReceptor {
  7.     public:
  8.         MIDIReceptor();
  9.         virtual ~MIDIReceptor();
  10.  
  11.         void FilterMidiMsg( UINT message, WPARAM wParam, LPARAM lParam );
  12.  
  13.         // overrida dessa bara
  14.         virtual void OnMIDIKeyDown( UINT key, UINT velocity );
  15.         virtual void OnMIDIKeyUp( UINT key, UINT velocity );
  16.  
  17.     private:
  18.  
  19. };
  20.  
  21. #endif
  22.