Пример #1
0
int main(int argc,char *argv[]) {
  
  /*The default makes this a really, really slow song*/
  /*So, we speed it up a little bit.*/
  dsound_set_duration(40);

  /*now, we play it*/
  while (!shutdown_requested()) {
    dsound_play(devil);
    dsound_wait();
  }

  return 0;
}
void debugBeep() {
dsound_set_duration(40);

	dsound_play(devil);

}
Пример #3
0
int main(int argc,char *argv[]) {
  dsound_set_duration(10);
  dsound_play(music);
  return 0;
}