diff options
author | David Reveman <davidr@novell.com> | 2007-08-29 12:30:27 +0200 |
---|---|---|
committer | David Reveman <davidr@novell.com> | 2007-08-29 12:30:27 +0200 |
commit | c51eb6ea16066cbb3b9d0f40cfd1b54bd653945f (patch) | |
tree | 37d53c855ffcd50a50e68d2a59ba39b7be9804fd /plugins/zoom.c | |
parent | ff9473c0abc433a9896a03c91bab29dd715d7a64 (diff) |
Split compiz.h into compiz.h and compiz-core.h.
Move all structures and most functions from compiz.h to
compiz-core.h. compiz.h provides an API that is stable
across releases with the same minor version number. It can
be used to create plugins that will run across multiple
core ABI versions. compiz-core.h contains all structures and
hooks used by the core. A plugin that includes compiz-core.h
is responsible for checking the core ABI version when being
initialized.
Remove deprecated function:
compWindowTypeMaskFromStringList
Diffstat (limited to 'plugins/zoom.c')
-rw-r--r-- | plugins/zoom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/zoom.c b/plugins/zoom.c index 84cb1235..4f2d83d6 100644 --- a/plugins/zoom.c +++ b/plugins/zoom.c @@ -31,7 +31,7 @@ #include <X11/cursorfont.h> -#include <compiz-plugin.h> +#include <compiz-core.h> static CompMetadata zoomMetadata; |