sound.h 237 B

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