Stéphane Marchesin | ae37e6c | 2014-08-08 18:19:40 -0700 | [diff] [blame^] | 1 | /* |
2 | * Copyright (c) 2014 The Chromium OS Authors. All rights reserved. | ||||
3 | * Use of this source code is governed by a BSD-style license that can be | ||||
4 | * found in the LICENSE file. | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef TERM_H | ||||
8 | #define TERM_H | ||||
9 | |||||
10 | #include "input.h" | ||||
11 | |||||
12 | int term_init(int32_t width, int32_t height, int32_t pitch); | ||||
13 | void term_close(); | ||||
14 | void term_redraw(); | ||||
15 | int term_run(); | ||||
16 | |||||
17 | #endif |