diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-28 19:32:46 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-28 19:32:46 +0000 |
commit | 072103b8a09df0d5bd2fd4a98ad84a9b2f1acbab (patch) | |
tree | 267c628f19bad16df050d8c43df1ad4a0a81c8ce /include/delphi/m_core.inc | |
parent | 54f5c491ab96204cd4ecaaf012d86251ad6dc426 (diff) |
some cosmetic changes to the Delphi headers
git-svn-id: http://svn.miranda-ng.org/main/trunk@2548 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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;
|