repo.or.cz
/
agg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added "make install" and "make uninstall".
[agg.git]
/
layer.h
blob
ba59489fedbbabd018581e1b33723518777422be
1
#ifndef AGG_LAYER_H
2
#define AGG_LAYER_H
3
4
struct
Layer
5
{
6
void
(*
enter
)(
const char
*,
const char
**);
7
void
(*
leave
)(
const char
*);
8
};
9
10
struct
Layer
layer
(
11
void
(*
enter
)(
const char
*,
const char
**),
12
void
(*
leave
)(
const char
*));
13
14
#endif