Home > Back-end >  Asking for help: use Delphi10.3, want to install paslibvlc, you don't succeed, seek guidance
Asking for help: use Delphi10.3, want to install paslibvlc, you don't succeed, seek guidance

Time:12-18

For detailed installation VLC control guide

CodePudding user response:

Prompt error: Unknown compiler do the update compiler. Inc

CodePudding user response:

It is obvious that your paslibvlc only support to Delphi 10.2, need to modify the file:

{$IFDEF VER330}
{$DEFINE DELPHI26}
{$DEFINE DELPHI_XE13}
{$DEFINE DELPHI_RIO}
{$UNDEF DELPHI_XX}
{$ENDIF}

{$IFDEF DELPHI_XX}
Unknown compiler do the update compiler. Inc
{$ENDIF}

{$IFDEF DELPHI26} {$DEFINE DELPHI26_UP} {$ENDIF}

This file is there any other place, also want to make similar changes
  • Related