Last change
on this file since 1042 was
769,
checked in by Sam Hocevar, 15 years ago
|
- Removed \file directives from all files except caca.h and cucul.h, to
remove redundencies in the Doxygen documentation.
|
-
Property svn:keywords set to
Id
|
File size:
631 bytes
|
Line | |
---|
1 | /* |
---|
2 | * Imaging tools for cacaview and img2irc |
---|
3 | * Copyright (c) 2003-2006 Sam Hocevar <sam@zoy.org> |
---|
4 | * All Rights Reserved |
---|
5 | * |
---|
6 | * $Id: common-image.h 769 2006-04-14 07:30:53Z sam $ |
---|
7 | * |
---|
8 | * This program is free software; you can redistribute it and/or |
---|
9 | * modify it under the terms of the Do What The Fuck You Want To |
---|
10 | * Public License, Version 2, as published by Sam Hocevar. See |
---|
11 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
12 | */ |
---|
13 | |
---|
14 | struct image |
---|
15 | { |
---|
16 | char *pixels; |
---|
17 | unsigned int w, h; |
---|
18 | struct cucul_dither *dither; |
---|
19 | void *priv; |
---|
20 | }; |
---|
21 | |
---|
22 | /* Local functions */ |
---|
23 | extern struct image * load_image(char const *); |
---|
24 | extern void unload_image(struct image *); |
---|
25 | |
---|
Note: See
TracBrowser
for help on using the repository browser.