mirror of
https://github.com/brechtsanders/xlsxio
synced 2025-03-28 21:13:24 +00:00
Merge pull request #131 from vslavik/msvc-fixes
Compilation and warnings fixes for modern MSVC
This commit is contained in:
commit
de9d53a842
@ -1625,7 +1625,7 @@ DLL_EXPORT_XLSXIO int xlsxioread_sheet_next_cell_datetime (xlsxioreadersheet she
|
|||||||
if (value != 0) {
|
if (value != 0) {
|
||||||
value = (value - 25569) * 86400; //conversion from Excel to Unix timestamp
|
value = (value - 25569) * 86400; //conversion from Excel to Unix timestamp
|
||||||
}
|
}
|
||||||
*pvalue = value;
|
*pvalue = (time_t)value;
|
||||||
}
|
}
|
||||||
free(result);
|
free(result);
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -47,7 +47,9 @@ typedef struct zip_source zip_source_t;
|
|||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
# undef DLL_EXPORT_XLSXIO
|
# undef DLL_EXPORT_XLSXIO
|
||||||
# define DLL_EXPORT_XLSXIO
|
# define DLL_EXPORT_XLSXIO
|
||||||
# define va_copy(dst,src) ((dst) = (src))
|
# ifndef va_copy
|
||||||
|
# define va_copy(dst,src) ((dst) = (src))
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
@ -8,7 +8,7 @@ int main (int argc, char* argv[])
|
|||||||
if (argc <= 1)
|
if (argc <= 1)
|
||||||
return 0;
|
return 0;
|
||||||
unlink(argv[1]);
|
unlink(argv[1]);
|
||||||
if ((handle = xlsxiowrite_open(argv[1])) == NULL) {
|
if ((handle = xlsxiowrite_open(argv[1], NULL)) == NULL) {
|
||||||
fprintf(stderr, "Error creating zip file\n");
|
fprintf(stderr, "Error creating zip file\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user