This is an automated email from the ASF dual-hosted git repository. leginee pushed a commit to branch bazel-migration in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit 34e4b078055e611be715284bc7b861bd439b0f62 Author: Damjan Jovanovic <[email protected]> AuthorDate: Sat Jan 4 19:05:01 2025 +0200 Add needed types for unixODBC on Win64. Patch by: me (cherry picked from commit d2e7baabf82959e1a28c82b23f3bc32a777a29d8) (cherry picked from commit 4ce04d5f5a4da7236a3cb81547238fb66e608604) --- main/dbaccess/source/ui/dlg/odbcconfig.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main/dbaccess/source/ui/dlg/odbcconfig.cxx b/main/dbaccess/source/ui/dlg/odbcconfig.cxx index 96bd57a1e5..e05bf23dd1 100644 --- a/main/dbaccess/source/ui/dlg/odbcconfig.cxx +++ b/main/dbaccess/source/ui/dlg/odbcconfig.cxx @@ -84,6 +84,10 @@ #pragma warning(push) #pragma warning(disable: 4005) #endif +#if _WIN64 +typedef long long INT64; +typedef unsigned long long UINT64; +#endif // _WIN64 #endif // defined(WNT) #if defined(OS2)
