Last change
on this file since 4383 was
4383,
checked in by Sam Hocevar, 13 years ago
|
A few meaningless tests.
|
-
Property svn:keywords set to
Id
|
File size:
771 bytes
|
Rev | Line | |
---|
[4383] | 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 | #if defined HAVE_CONFIG_H |
---|
| 15 | # include "config.h" |
---|
| 16 | #endif |
---|
| 17 | |
---|
| 18 | #include <caca.h> |
---|
| 19 | |
---|
| 20 | #include "mini-socket.h" |
---|
| 21 | |
---|
| 22 | struct nrx_screen |
---|
| 23 | { |
---|
| 24 | /* Public data */ |
---|
| 25 | caca_canvas_t *cv; |
---|
| 26 | |
---|
| 27 | /* Private data */ |
---|
| 28 | nrx_socket_t *sock; |
---|
| 29 | }; |
---|
| 30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.