1// Copyright 2013 The Chromium 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#ifndef CLOUD_PRINT_GCP20_PROTOTYPE_CONIO_POSIX_H_
6#define CLOUD_PRINT_GCP20_PROTOTYPE_CONIO_POSIX_H_
7
8// Method for disabling buffered IO.
9// |true| - disable, |false| - restore previous settings.
10void SetTemporaryTermiosSettings(bool temporary);
11
12// Analog from conio.h
13int _kbhit();
14
15// Analog from conio.h
16int _getche();
17
18#endif  // CLOUD_PRINT_GCP20_PROTOTYPE_CONIO_POSIX_H_
19
20