LCL-Qt5: Add missing macro "_LP64" on mingw730_64 for type "PTRINT". Issue #38984, patch by Marius Maximus.

git-svn-id: trunk@65217 -
This commit is contained in:
juha 2021-06-11 07:15:03 +00:00
parent d9c207b72b
commit 1159b4327b
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
#ifndef CHANDLES_H
#define CHANDLES_H
#if defined _LP64
#if defined(_LP64) || defined(__amd64__)
typedef long long int PTRINT;
typedef unsigned long long int PTRUINT;
#else

View File

@ -40,7 +40,7 @@
typedef bool (*EventFilter)(void *message, long *result);
typedef bool (*EventFilter2)(void *message);
#if defined _LP64
#if defined(_LP64) || defined(__amd64__)
typedef long long int PTRINT;
typedef unsigned long long int PTRUINT;
#else