sound.h 133 B

1234567891011
  1. #ifndef __SOUND_H__
  2. #define __SOUND_H__
  3. #include <stdbool.h>
  4. void initSound();
  5. void enableNotificationSound(bool enable);
  6. #endif