Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.55 KB | None | 0 0
  1. #ifndef _MUSIC_H
  2. #define _MUSIC_H
  3.  
  4. void PlayMusic(void *n);
  5. /* Music daemon, called in everything time of mainloop */
  6.  
  7. void StartupMusic(void *n);
  8. /* Play startup music */
  9.  
  10. void LogoutMusic(void *n);
  11. /* Play logout music */
  12.  
  13. void RandomMusic(void *n);
  14. /* Play a random music, except for startup music and logout music */
  15.  
  16. enum _Music
  17. /* Enumerator of songs */
  18. {
  19.     None,
  20.     Startup,
  21.     Logout,
  22.     Laputa,
  23.     Musicbox,
  24.     Lovesale,
  25.     Romeo,
  26.     Joy,
  27.     Minuet,
  28.     Turkey,
  29.     LoveIsBlue
  30. };
  31. typedef enum _Music Music;
  32.  
  33. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement