musictunes.h 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * This file is part of the MicroPython project, http://micropython.org/
  3. *
  4. * The MIT License (MIT)
  5. *
  6. * Copyright (c) 2017 Glenn Ruben Bakke
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #ifndef MUSIC_TUNES_H__
  27. #define MUSIC_TUNES_H__
  28. struct music_tune_dadadum_s;
  29. struct music_tune_entertainer_s;
  30. struct music_tune_prelude_s;
  31. struct music_tune_ode_s;
  32. struct music_tune_nyan_s;
  33. struct music_tune_ringtone_s;
  34. struct music_tune_funk_s;
  35. struct music_tune_blues_s;
  36. struct music_tune_birthday_s;
  37. struct music_tune_wedding_s;
  38. struct music_tune_funeral_s;
  39. struct music_tune_punchline_s;
  40. struct music_tune_python_s;
  41. struct music_tune_baddy_s;
  42. struct music_tune_chase_s;
  43. struct music_tune_ba_ding_s;
  44. struct music_tune_wawawawaa_s;
  45. struct music_tune_jump_up_s;
  46. struct music_tune_jump_down_s;
  47. struct music_tune_power_up_s;
  48. struct music_tune_power_down_s;
  49. extern const struct music_tune_dadadadum_s microbit_music_tune_dadadadum_obj;
  50. extern const struct music_tune_entertainer_s microbit_music_tune_entertainer_obj;
  51. extern const struct music_tune_prelude_s microbit_music_tune_prelude_obj;
  52. extern const struct music_tune_ode_s microbit_music_tune_ode_obj;
  53. extern const struct music_tune_nyan_s microbit_music_tune_nyan_obj;
  54. extern const struct music_tune_ringtone_s microbit_music_tune_ringtone_obj;
  55. extern const struct music_tune_funk_s microbit_music_tune_funk_obj;
  56. extern const struct music_tune_blues_s microbit_music_tune_blues_obj;
  57. extern const struct music_tune_birthday_s microbit_music_tune_birthday_obj;
  58. extern const struct music_tune_wedding_s microbit_music_tune_wedding_obj;
  59. extern const struct music_tune_funeral_s microbit_music_tune_funeral_obj;
  60. extern const struct music_tune_punchline_s microbit_music_tune_punchline_obj;
  61. extern const struct music_tune_python_s microbit_music_tune_python_obj;
  62. extern const struct music_tune_baddy_s microbit_music_tune_baddy_obj;
  63. extern const struct music_tune_chase_s microbit_music_tune_chase_obj;
  64. extern const struct music_tune_ba_ding_s microbit_music_tune_ba_ding_obj;
  65. extern const struct music_tune_wawawawaa_s microbit_music_tune_wawawawaa_obj;
  66. extern const struct music_tune_jump_up_s microbit_music_tune_jump_up_obj;
  67. extern const struct music_tune_jump_down_s microbit_music_tune_jump_down_obj;
  68. extern const struct music_tune_power_up_s microbit_music_tune_power_up_obj;
  69. extern const struct music_tune_power_down_s microbit_music_tune_power_down_obj;
  70. #endif // MUSIC_TUNES_H__