• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2017 The Chromium OS Authors. All rights reserved.
2  * Use of this source code is governed by a BSD-style license that can be
3  * found in the LICENSE file.
4  */
5 
6 #ifndef RSTREAM_STUB_H_
7 #define RSTREAM_STUB_H_
8 
9 #include <time.h>
10 
11 void rstream_stub_reset();
12 
13 void rstream_stub_dev_offset(const cras_rstream* rstream,
14                              unsigned int dev_id,
15                              unsigned int offset);
16 
17 // Stub that rstream is pending the reply from client or not.
18 void rstream_stub_pending_reply(const cras_rstream* rstream, int ret_value);
19 
20 #endif  // RSTREAM_STUB_H_
21