Last change
on this file since 4384 was
4384,
checked in by Sam Hocevar, 13 years ago
|
Submitting empty code for later.
|
-
Property svn:keywords set to
Id
|
File size:
905 bytes
|
Line | |
---|
1 | /* |
---|
2 | * neercs console-based window manager |
---|
3 | * Copyright (c) 2006-2010 Sam Hocevar <sam@hocevar.net> |
---|
4 | * 2008-2010 Jean-Yves Lamoureux <jylam@lnxscene.org> |
---|
5 | * All Rights Reserved |
---|
6 | * |
---|
7 | * This program is free software. It comes without any warranty, to |
---|
8 | * the extent permitted by applicable law. You can redistribute it |
---|
9 | * and/or modify it under the terms of the Do What The Fuck You Want |
---|
10 | * To Public License, Version 2, as published by Sam Hocevar. See |
---|
11 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
12 | */ |
---|
13 | |
---|
14 | #ifndef __SCREEN_H__ |
---|
15 | #define __SCREEN_H__ |
---|
16 | |
---|
17 | #include "client/client.h" |
---|
18 | #include <caca.h> |
---|
19 | |
---|
20 | typedef struct nrx_screen nrx_screen_t; |
---|
21 | |
---|
22 | nrx_screen_t *create_screen_test(nrx_client_t *client); |
---|
23 | void tick_screen(nrx_screen_t *screen); |
---|
24 | caca_canvas_t *get_screen_canvas(nrx_screen_t *screen); |
---|
25 | void destroy_screen(nrx_screen_t *screen); |
---|
26 | |
---|
27 | #endif /* __SCREEN_H__ */ |
---|
28 | |
---|
Note: See
TracBrowser
for help on using the repository browser.