2004.10.18 19:25 "[Tiff] Hello's and Urgent problem!!!", by Elzumba Sefue

2004.10.18 19:25 "[Tiff] Hello's and Urgent problem!!!", by Elzumba Sefue

Hello to all!!! Before nothing, my name is Matias Nicolas Sommi, and I'm a newbie in the TIFF programming, I'm interesting in it for my work. The first problem that I have is "unresolved symbol to TIFFOpen"...(See the source code below) I'm using windows 2k OS, and the compiler is Dev-C++ 4.9.9

Thank you very much, and I'm waiting for your answers.

#include "tiffio.h"
#include <stdio.h>
#include <math.h> //In linux is necessary to compile,
but I'm windows...
int main() {
    TIFF *tif;
    printf("\nMANUAL BREAKPOINT");
    tif = TIFFOpen("1.tif", "r"); //It's the error
    printf("\nMANUAL BREAKPOINT 2");
    TIFFClose(tif);
    printf("\nMANUAL BREAKPOINT 3");
    return 0;
}