2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
364 B

  1. #ifndef IZ_MIDI_MIDI_H
  2. #define IZ_MIDI_MIDI_H
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include "../stdinc/IZ_string.h"
  6. typedef unsigned char IZ_MIDINote;
  7. static const unsigned char IZ_MIDI_NOTE_ON = 0x90u;
  8. static const unsigned char IZ_MIDI_NOTE_OFF = 0x80u;
  9. char* IZ_MIDIGetNoteName(unsigned char);
  10. unsigned char IZ_MIDIGetNoteFromName(const char*);
  11. #endif