mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-11 09:49:15 +02:00
* use the qword hack only on linux x86_64 (others would fail)
git-svn-id: trunk@10250 -
This commit is contained in:
parent
c44fb4a79e
commit
0dece44b9b
@ -418,7 +418,7 @@ uses
|
||||
* NULL and token.size will be 0 }
|
||||
|
||||
// internal hacky version to go around a bug regarding struct results/cdecl
|
||||
function __aspell_document_checker_next_misspelling(ths:PAspellDocumentChecker):QWord;cdecl;external libaspell name 'aspell_document_checker_next_misspelling';
|
||||
function __aspell_document_checker_next_misspelling(ths:PAspellDocumentChecker):{$IFDEF CPU64}{$IFDEF LINUX}QWord{$ELSE}AspellToken{$ENDIF}{$ELSE}AspellToken{$ENDIF};cdecl;external libaspell name 'aspell_document_checker_next_misspelling';
|
||||
|
||||
{ Returns the underlying filter class. }
|
||||
|
||||
@ -824,7 +824,7 @@ var
|
||||
* NULL and token.size will be 0 }
|
||||
|
||||
// hack around struct/cdecl problem
|
||||
__aspell_document_checker_next_misspelling: function(ths:PAspellDocumentChecker):QWord;cdecl;
|
||||
__aspell_document_checker_next_misspelling: function(ths:PAspellDocumentChecker):{$IFDEF CPU64}{$IFDEF LINUX}QWord{$ELSE}AspellToken{$ENDIF}{$ELSE}AspellToken{$ENDIF};cdecl;
|
||||
|
||||
{ Returns the underlying filter class. }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user