00001
#include <volume_io/internal_volume_io.h>
00002
#include <bicpl/images.h>
00003
00004
00005 public Status
input_rgb_file(
00006 STRING filename,
00007
pixels_struct *pixels )
00008 {
00009 print_error(
"input_rgb_file(): cannot read image files.\n" );
00010 print_error(
"Recompile bicpl with an image library, then relink this application.\n" );
00011 }
00012
00013
00014
00015 public Status
output_rgb_file(
00016 STRING filename,
00017
pixels_struct *pixels )
00018 {
00019 print_error(
"output_rgb_file(): cannot write image files.\n" );
00020 print_error(
"Recompile bicpl with an image library, then relink this application.\n" );
00021 }