From eccdca80d276769111b85a96658e7911acc1a69d Mon Sep 17 00:00:00 2001 From: hemanthmanga <166606741+hemanthmanga@users.noreply.github.com> Date: Thu, 8 Aug 2024 13:15:54 +0530 Subject: [PATCH] Create test-tiff.cc --- test-tiff.cc | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test-tiff.cc diff --git a/test-tiff.cc b/test-tiff.cc new file mode 100644 index 00000000000..d31566f17ab --- /dev/null +++ b/test-tiff.cc @@ -0,0 +1,9 @@ +#include +#include + +int main() { + thandle_t image; + TIFFClientOpen("", "rb", image, nullptr, nullptr, nullptr, nullptr, nullptr, + nullptr, nullptr); + return 0; +}