#ifndef RB_JPEG_JPEG_H #define RB_JPEG_JPEG_H 1 #include #include "jpeg.h" #include "ruby.h" struct rb_jpeg_image { struct jpeg_decompress_struct *read; struct jpeg_error_mgr *error; FILE *fp; }; void Init_jpeg_image(); #endif