Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenThornquist committed Jan 6, 2025
1 parent c628be3 commit 87a25c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions siffreadermodule/include/siffparams/siffparams.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@

#define LITTLEENDIAN "II"
#define BIGENDIAN "MM"
constexpr uint16_t TIFFID = 42;
constexpr uint16_t BIGTIFFID = 43;
constexpr uint32_t MAGICNUMBER = 117637889; // identifies this as a scanimage file
constexpr uint32_t SI2019 = 4; // identifies this as 2019 or later

#include <cstdint>
#include <stdlib.h>
#include <string>
#include <vector>

constexpr uint16_t TIFFID = 42;
constexpr uint16_t BIGTIFFID = 43;
constexpr uint32_t MAGICNUMBER = 117637889; // identifies this as a scanimage file
constexpr uint32_t SI2019 = 4; // identifies this as 2019 or later

typedef struct SiffParams{
std::string filename;
bool little;
Expand Down

0 comments on commit 87a25c5

Please sign in to comment.