image.h
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:0k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* Lifted from include/gltk.h */
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. /*
  6. ** RGB Image Structure
  7. */
  8. typedef struct _RGBImageRec {
  9.     int sizeX, sizeY;
  10.     unsigned char *data;
  11. } RGBImageRec;
  12. extern RGBImageRec *RGBImageLoad(char *);
  13. #ifdef __cplusplus
  14. }
  15. #endif