aboutsummaryrefslogtreecommitdiff
path: root/src/control.h
diff options
context:
space:
mode:
authortaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-08-28 21:39:35 +0000
committertaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-08-28 21:39:35 +0000
commit50a75cc5458ba553f5cdcede6c9699f7a0347377 (patch)
tree993e70c4dc75885a3f207ba79b71a22c4d3aee66 /src/control.h
parent85b8978beedd0142560573a92442a5ed907b0ed2 (diff)
Use unsigned types for image storage
git-svn-id: svn://cook.msm.cam.ac.uk:745/diff-tomo/dtr@82 bf6ca9ba-c028-0410-8290-897cf20841d1
Diffstat (limited to 'src/control.h')
-rw-r--r--src/control.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/control.h b/src/control.h
index 5de0b86..2e16079 100644
--- a/src/control.h
+++ b/src/control.h
@@ -49,7 +49,7 @@ typedef enum {
typedef struct imagerecord_struct {
- int16_t *image;
+ uint16_t *image;
double tilt;
double omega;
@@ -115,7 +115,7 @@ typedef struct cctx_struct {
} ControlContext;
-extern int control_add_image(ControlContext *ctx, int16_t *image, int width, int height, double tilt);
+extern int control_add_image(ControlContext *ctx, uint16_t *image, int width, int height, double tilt);
#endif /* CONTROL_H */