|
Problem while including sql.h in Dev-C++
Hi all,
I started using DEV-c++ very recently. But while including sql.h ,I am getting compile time errors. Is this due to some problems in Project Settings ???
/*My Code follows*/
#include <stdio.h>
#include <stdlib.h>
#include <sql.h>
int main(int argc, char *argv[])
{
system("PAUSE");
return 0;
}
/*Errors is shown below*/
/*Error#1*/
**********
C:\Dev-Cpp\include\sql.h:13, from main.c In file included from
C:\Dev-Cpp/include/sql.h:13, from main.c
/*Error#2*/
**********
C:\Dev-Cpp\main.c from main.c
/*Error#3*/
***********
C:\Dev-Cpp\include\sqltypes.h syntax error before "UDWORD"
/*Erro#4*/
**********
C:\Dev-Cpp\include\sqltypes.h syntax error before "PTR"
continues...
such 79 Errors are coming.
why this is happening.
Please Help me.
George
|