diff options
author | Thomas White <taw@physics.org> | 2020-07-10 15:30:51 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:53:45 +0200 |
commit | 30973775e4bddba8ceebf4b93f58440cbb520617 (patch) | |
tree | bf11a7762e8d14e24d551e550243b8233147c005 /libcrystfel/src/stream.h | |
parent | 47ecc15f4f32350bb29085459e23f208007e3d1c (diff) |
stream_read_chunk: Add option to load image data
Diffstat (limited to 'libcrystfel/src/stream.h')
-rw-r--r-- | libcrystfel/src/stream.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcrystfel/src/stream.h b/libcrystfel/src/stream.h index b086a1b6..a575cedb 100644 --- a/libcrystfel/src/stream.h +++ b/libcrystfel/src/stream.h @@ -85,6 +85,9 @@ typedef enum { /** Read the general information about crystals */ STREAM_CRYSTALS = 8, + /** Read the image data */ + STREAM_IMAGE_DATA = 16, + } StreamFlags; #ifdef __cplusplus |