mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-12 23:44:20 +00:00
17 lines
395 B
C++
17 lines
395 B
C++
#include <unistd.h>
|
|
#include <tiffio.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
const char* const filename = "test.tiff";
|
|
TIFF* f = TIFFOpen(filename, "w");
|
|
AEDI_EXPECT(f != nullptr);
|
|
|
|
AEDI_EXPECT(TIFFSetField(f, TIFFTAG_IMAGEWIDTH, 32) == 1);
|
|
AEDI_EXPECT(TIFFSetField(f, TIFFTAG_IMAGEWIDTH, 32) == 1);
|
|
|
|
TIFFClose(f);
|
|
AEDI_EXPECT(unlink(filename) == 0);
|
|
|
|
return 0;
|
|
}
|