blob: 6f4ee95e1e5493018d89b084ffc243c5f7314b54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Copyright 2016 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* Header for tablet_mode.c */
/* Return 1 if in tablet mode, 0 otherwise */
int tablet_get_mode(void);
void tablet_set_mode(int mode);
|