00001 /* 00002 * libshveu: A library for controlling SH-Mobile VEU 00003 * Copyright (C) 2009 Renesas Technology Corp. 00004 * Copyright (C) 2010 Renesas Electronics Corporation 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Library General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Library General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Library General Public 00017 * License along with this library; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA 00019 */ 00020 00021 #ifndef __SHVEU_H__ 00022 #define __SHVEU_H__ 00023 00024 #ifdef __cplusplus 00025 extern "C" { 00026 #endif 00027 00110 struct SHVEU; 00111 typedef struct SHVEU SHVEU; 00112 00113 00118 SHVEU *shveu_open(void); 00119 00124 void shveu_close(SHVEU *veu); 00125 00126 #include <shveu/veu_colorspace.h> 00127 00128 #ifdef __cplusplus 00129 } 00130 #endif 00131 00132 #endif /* __SHVEU_H__ */ 00133