mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 18:29:09 +02:00
* declare pointers to variants only if the variant feature is available
git-svn-id: trunk@37809 -
This commit is contained in:
parent
d3553337ca
commit
82f452bb7c
@ -486,8 +486,10 @@ Type
|
|||||||
PDateTime = ^TDateTime;
|
PDateTime = ^TDateTime;
|
||||||
{$endif}
|
{$endif}
|
||||||
PError = ^TError;
|
PError = ^TError;
|
||||||
|
{$ifdef FPC_HAS_FEATURE_VARIANTS}
|
||||||
PVariant = ^Variant;
|
PVariant = ^Variant;
|
||||||
POleVariant = ^OleVariant;
|
POleVariant = ^OleVariant;
|
||||||
|
{$endif FPC_HAS_FEATURE_VARIANTS}
|
||||||
|
|
||||||
PWideChar = ^WideChar;
|
PWideChar = ^WideChar;
|
||||||
PPWideChar = ^PWideChar;
|
PPWideChar = ^PWideChar;
|
||||||
|
Loading…
Reference in New Issue
Block a user