diff options
Diffstat (limited to 'include/delphi/m_core.inc')
-rw-r--r-- | include/delphi/m_core.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/delphi/m_core.inc b/include/delphi/m_core.inc index 2f9401e63d..02c6909675 100644 --- a/include/delphi/m_core.inc +++ b/include/delphi/m_core.inc @@ -171,9 +171,9 @@ type const
{$IFDEF WIN64}
- CALLSERVICE_NOTFOUND = $8000000000000000;
+ CALLSERVICE_NOTFOUND = int_ptr($8000000000000000);
{$ELSE}
- CALLSERVICE_NOTFOUND = $80000000;
+ CALLSERVICE_NOTFOUND = int_ptr($80000000);
{$ENDIF}
function CreateHookableEvent(const name: PAnsiChar): THANDLE; stdcall;
|