00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef GVPLUGIN_IMAGELOAD_H
00018 #define GVPLUGIN_IMAGELOAD_H
00019
00020 #include "types.h"
00021 #include "gvplugin.h"
00022 #include "gvcjob.h"
00023
00024 extern void gvdevice_fputs(GVJ_t * job, char *s);
00025 extern void gvdevice_printf(GVJ_t * job, const char *format, ...);
00026
00027 #ifdef __cplusplus
00028 extern "C" {
00029 #endif
00030
00031 struct gvloadimage_engine_s {
00032 void (*loadimage) (GVJ_t *job, usershape_t *us, boxf b, boolean filled);
00033 };
00034
00035 #ifdef __cplusplus
00036 }
00037 #endif
00038 #endif