< prev index next >

src/java.desktop/windows/native/libawt/windows/colordata.h

Print this page




  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 #ifndef _COLORDATA_H_
  26 #define _COLORDATA_H_
  27 
  28 #include "img_globals.h"
  29 
  30 typedef struct _ColorData {
  31     char* img_oda_red;
  32     char* img_oda_green;
  33     char* img_oda_blue;
  34     unsigned char* img_clr_tbl;
  35     int *pGrayInverseLutData;

  36 } ColorData;
  37 
  38 #define CANFREE(pData) (pData)
  39 
  40 #endif


  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 #ifndef _COLORDATA_H_
  26 #define _COLORDATA_H_
  27 
  28 #include "img_globals.h"
  29 
  30 typedef struct _ColorData {
  31     char* img_oda_red;
  32     char* img_oda_green;
  33     char* img_oda_blue;
  34     unsigned char* img_clr_tbl;
  35     int *pGrayInverseLutData;
  36     int representsPrimaries;
  37 } ColorData;
  38 
  39 #define CANFREE(pData) (pData)
  40 
  41 #endif
< prev index next >