sound.h 237 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2013 Google, Inc
  4. */
  5. #ifndef __SANDBOX_SOUND_H
  6. #define __SANDBOX_SOUND_H
  7. int sound_play(unsigned int msec, unsigned int frequency);
  8. int sound_init(const void *blob);
  9. #endif