mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-28 11:50:28 +02:00
* fixed declaration for cur_term for darwin now that the importing of
variables from shared libraries works
This commit is contained in:
parent
e823822f49
commit
e81983d028
@ -605,7 +605,7 @@ var
|
|||||||
{$ifndef darwin}
|
{$ifndef darwin}
|
||||||
cur_term : TerminalCommon_ptr1; cvar; external;
|
cur_term : TerminalCommon_ptr1; cvar; external;
|
||||||
{$else darwin}
|
{$else darwin}
|
||||||
cur_term : TerminalCommon_ptr1; external curseslib name '_cur_term';
|
cur_term : TerminalCommon_ptr1; external curseslib name 'cur_term';
|
||||||
{$endif darwin}
|
{$endif darwin}
|
||||||
cur_term_booleans: ^TT_BoolArray;
|
cur_term_booleans: ^TT_BoolArray;
|
||||||
cur_term_numbers: ^TT_WordArray;
|
cur_term_numbers: ^TT_WordArray;
|
||||||
@ -747,7 +747,11 @@ function tparam(const char *, char *, int, ...): PChar; cdecl; external;}
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.5 2004-02-06 22:35:50 jonas
|
Revision 1.6 2004-03-05 22:18:15 jonas
|
||||||
|
* fixed declaration for cur_term for darwin now that the importing of
|
||||||
|
variables from shared libraries works
|
||||||
|
|
||||||
|
Revision 1.5 2004/02/06 22:35:50 jonas
|
||||||
+ some darwin support, doesn't work yet because of imported variables
|
+ some darwin support, doesn't work yet because of imported variables
|
||||||
problem
|
problem
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user