source: sasview/src/sas/sascalc/file_converter/c_ext/bsl_loader.h

ESS_GUI
Last change on this file was 535e181, checked in by lewis, 8 years ago

Begin implementing 2D BSL loader into GUI

  • Property mode set to 100644
File size: 399 bytes
Line 
1#ifndef bsl_loader_h
2#define bsl_loader_h
3
4typedef struct {
5    // File to load
6    char *filename;
7    // Number of frames in the file
8    int n_frames;
9    // Frame to load
10    int frame;
11    // Number of pixels in the file
12    int n_pixels;
13    // Number of rasters in the file
14    int n_rasters;
15    // Whether or not the bytes are in reverse order
16    int swap_bytes;
17} CLoader_params;
18
19#endif
Note: See TracBrowser for help on using the repository browser.