rgb.h revision a3f3701cea1ba388e7c877955252bb7375eedebd
1N/A/***********************************************************
1N/A
1N/ACopyright 1987, 1998 The Open Group
1N/A
1N/APermission to use, copy, modify, distribute, and sell this software and its
1N/Adocumentation for any purpose is hereby granted without fee, provided that
1N/Athe above copyright notice appear in all copies and that both that
1N/Acopyright notice and this permission notice appear in supporting
1N/Adocumentation.
1N/A
1N/AThe above copyright notice and this permission notice shall be included in
1N/Aall copies or substantial portions of the Software.
1N/A
1N/ATHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1N/AIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1N/AFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1N/AOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
1N/AAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1N/ACONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1N/A
1N/AExcept as contained in this notice, the name of The Open Group shall not be
1N/Aused in advertising or otherwise to promote the sale, use or other dealings
1N/Ain this Software without prior written authorization from The Open Group.
1N/A
1N/ACopyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
1N/A
1N/A All Rights Reserved
1N/A
1N/APermission to use, copy, modify, and distribute this software and its
1N/Adocumentation for any purpose and without fee is hereby granted,
1N/Aprovided that the above copyright notice appear in all copies and that
1N/Aboth that copyright notice and this permission notice appear in
1N/Asupporting documentation, and that the name of Digital not be
1N/Aused in advertising or publicity pertaining to distribution of the
1N/Asoftware without specific, written prior permission.
1N/A
1N/ADIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
1N/AALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
1N/ADIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
1N/AANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
1N/AWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
1N/AARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
1N/ASOFTWARE.
1N/A
1N/A******************************************************************/
1N/A
1N/A#ifndef RGB_H
1N/A#define RGB_H
1N/Atypedef struct _RGB {
1N/A unsigned short red, green, blue;
1N/A} RGB;
1N/A#endif /* RGB_H */
1N/A