mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 15:28:14 +02:00
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:
parent
d9c207b72b
commit
1159b4327b
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user