- Timestamp:
- May 18, 2007, 10:10:41 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/kapa-mods-2007-05/Ohana/src/libkapa/include/kapa.h
r13432 r13434 20 20 int Nx; 21 21 int Ny; 22 char *file;23 char *name;24 22 } KiiImage; 25 26 typedef struct {27 double zero;28 double range;29 int logflux;30 } KiiDisplayMode;31 23 32 24 typedef struct { … … 90 82 91 83 typedef struct { 84 int logflux; 85 double zero, range; 86 char name[1024]; 87 char file[1024]; 88 } KapaImageData; 89 90 typedef struct { 92 91 int dx, dy, ascent; 93 92 unsigned char *bits; … … 123 122 124 123 /* KiiPicture.c */ 125 int KiiNewPicture1D (int fd, KiiImage *image, K iiDisplayMode *mode, Coords *coords);126 int KiiNewPicture2D (int fd, KiiImage *image, K iiDisplayMode *mode, Coords *coords);124 int KiiNewPicture1D (int fd, KiiImage *image, KapaImageData *data, Coords *coords); 125 int KiiNewPicture2D (int fd, KiiImage *image, KapaImageData *data, Coords *coords); 127 126 128 127 /* KiiOverlay.c */ … … 164 163 int KapaGetSection (int fd, char *name); 165 164 int KapaMoveSection (int fd, char *name, char *direction); 166 int KapaSetGraphStyle (int fd, Graphdata *graphmode); 167 int KapaGetGraphStyle (int fd, Graphdata *graphmode); 165 int KapaSetGraphData (int fd, Graphdata *graphmode); 166 int KapaGetGraphData (int fd, Graphdata *graphmode); 167 int KapaSetImageData (int fd, KapaImageData *graphmode); 168 int KapaGetImageData (int fd, KapaImageData *graphmode); 168 169 169 170 /* KapaColors */
Note:
See TracChangeset
for help on using the changeset viewer.
