Darkside mini SQL errors in http extension dll
-
Hi, i'm trying to implement the Darkside mini SQL library in my ISAPI extension DLL. I tested the library before with a console application and it worked great, but not with my ISAPI dll... I get the following errors:
MHExtension.cpp
c:\dsqlm_1\include\dsql_m_structs.h(46) : error C2059: syntax error : 'constant'
c:\dsqlm_1\include\dsql_m_structs.h(46) : error C2143: syntax error : missing ';' before '}'
c:\dsqlm_1\include\dsql_m_structs.h(47) : error C2377: 'INT' : redefinition; typedef cannot be overloaded with any other symbol
c:\program files\microsoft visual studio\vc98\include\windef.h(161) : see declaration of 'INT'
c:\dsqlm_1\include\dsql_m_structs.h(47) : error C2377: 'FLOAT' : redefinition; typedef cannot be overloaded with any other symbol
c:\program files\microsoft visual studio\vc98\include\windef.h(145) : see declaration of 'FLOAT'
c:\dsqlm_1\include\dsql_m_structs.h(47) : error C2377: 'CHAR' : redefinition; typedef cannot be overloaded with any other symbol
c:\program files\microsoft visual studio\vc98\include\winnt.h(134) : see declaration of 'CHAR'
c:\dsqlm_1\include\dsql_m_structs.h(48) : error C2377: 'BOOL' : redefinition; typedef cannot be overloaded with any other symbol
c:\program files\microsoft visual studio\vc98\include\windef.h(142) : see declaration of 'BOOL'
c:\dsqlm_1\include\dsql_m_structs.h(64) : error C2146: syntax error : missing ';' before identifier 'unique'
c:\dsqlm_1\include\dsql_m_structs.h(64) : error C2501: 'boolean' : missing storage-class or type specifiers
c:\dsqlm_1\include\dsql_m_structs.h(64) : error C2501: 'unique' : missing storage-class or type specifiers
c:\dsqlm_1\include\dsql_m_structs.h(65) : error C2146: syntax error : missing ';' before identifier 'indexed'
c:\dsqlm_1\include\dsql_m_structs.h(65) : error C2501: 'boolean' : missing storage-class or type specifiers
c:\dsqlm_1\include\dsql_m_structs.h(65) : error C2501: 'indexed' : missing storage-class or type specifiers
c:\dsqlm_1\include\dsql_m_structs.h(66) : error C2146: syntax error : missing ';' before identifier 'nullable'
c:\dsqlm_1\include\dsql_m_structs.h(66) : error C2501: 'boolean' : missing storage-class or type specifiers
c:\dsqlm_1\include\dsql_m_structs.h(66) : error C2501: 'nullable' : missing storage-class or type specifiers
c:\dsqlm_1\include\dsql_m_structs.h(67) : error C2146: syntax error : missing ';' before identifier 'in_active'
c:\dsqlm_1\include\dsql_m_structs.h(67) : error C2501: 'boolean' : missing storage-class or type spe