Add this to jedi-sdl.inc to get it working with D2010:
Code:
{$IFDEF ver210}
  {$DEFINE Delphi}   {Delphi 2009}
  {$DEFINE Delphi32}
  {$DEFINE Delphi4UP}
  {$DEFINE Delphi5UP}
  {$DEFINE Delphi6UP}
  {$DEFINE Delphi7UP}
  {$DEFINE Delphi8UP}
  {$DEFINE Delphi9UP}
  {$DEFINE Delphi10UP}
  {$DEFINE Delphi11UP}
  {$DEFINE Delphi12UP}
  {$DEFINE Delphi14UP}
  {$WARN UNSAFE_TYPE OFF} {Disable warning for unsafe types in Delphi 7}
  {$DEFINE Has_Int64}
  {$DEFINE HAS_TYPES}
{$ENDIF ver210}