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 /src/cursor.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 'src/cursor.c')
-rw-r--r-- | src/cursor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cursor.c b/src/cursor.c index ae5c8da8..559a285c 100644 --- a/src/cursor.c +++ b/src/cursor.c @@ -23,10 +23,10 @@ * Author: David Reveman <davidr@novell.com> */ -#include <compiz.h> - #include <stdlib.h> +#include <compiz-core.h> + static void setCursorMatrix (CompCursor *c) { |