1 | /************************************************************
|
---|
2 | Copyright (c) 1997 by Silicon Graphics Computer Systems, Inc.
|
---|
3 | Permission to use, copy, modify, and distribute this
|
---|
4 | software and its documentation for any purpose and without
|
---|
5 | fee is hereby granted, provided that the above copyright
|
---|
6 | notice appear in all copies and that both that copyright
|
---|
7 | notice and this permission notice appear in supporting
|
---|
8 | documentation, and that the name of Silicon Graphics not be
|
---|
9 | used in advertising or publicity pertaining to distribution
|
---|
10 | of the software without specific prior written permission.
|
---|
11 | Silicon Graphics makes no representation about the suitability
|
---|
12 | of this software for any purpose. It is provided "as is"
|
---|
13 | without any express or implied warranty.
|
---|
14 | SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
|
---|
15 | SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
---|
16 | AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
|
---|
17 | GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
|
---|
18 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
---|
19 | DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
---|
20 | OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
|
---|
21 | THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
---|
22 | ********************************************************/
|
---|
23 |
|
---|
24 | #ifndef _EVI_H_
|
---|
25 | #define _EVI_H_
|
---|
26 |
|
---|
27 | #define XEVI_TRANSPARENCY_NONE 0
|
---|
28 | #define XEVI_TRANSPARENCY_PIXEL 1
|
---|
29 | #define XEVI_TRANSPARENCY_MASK 2
|
---|
30 |
|
---|
31 | #define EVINAME "Extended-Visual-Information"
|
---|
32 |
|
---|
33 | #define XEVI_MAJOR_VERSION 1 /* current version numbers */
|
---|
34 | #define XEVI_MINOR_VERSION 0
|
---|
35 |
|
---|
36 | #endif
|
---|