X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=interfaces%2Fclsql-uffi%2Fclsql-uffi.c;h=951a1ec3cf260ba78cb51ec8b34da1f281273f9a;hb=04a4f10a13773101f275c31f300b28c08be652c0;hp=fc404cc38375e7f81a485c41dcea1a2d1d862eb5;hpb=f1930020ce73039b8627af801722c28afff5d31d;p=clsql.git diff --git a/interfaces/clsql-uffi/clsql-uffi.c b/interfaces/clsql-uffi/clsql-uffi.c index fc404cc..951a1ec 100644 --- a/interfaces/clsql-uffi/clsql-uffi.c +++ b/interfaces/clsql-uffi/clsql-uffi.c @@ -6,7 +6,7 @@ * Programmer: Kevin M. Rosenberg * Date Started: Mar 2002 * - * $Id: clsql-uffi.c,v 1.1 2002/03/27 08:09:25 kevin Exp $ + * $Id: clsql-uffi.c,v 1.2 2002/03/27 09:10:16 kevin Exp $ * * This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg * @@ -41,7 +41,11 @@ DLLEXPORT unsigned int atol64 (const unsigned char* str, int* pHigh32) { +#ifdef WIN32 + __int64 result = 0; +#else long long result = 0; +#endif int minus = 0; int first_char = *str; if (first_char == '+')