Bug and features in Far 1.70 plugin.pas

A place where plug-in developers can share their knowledge and experience.
Locked
Gammatester
Posts: 13
Joined: Fri Jan 20, 2006 5:14 pm

Bug and features in Far 1.70 plugin.pas

Post by Gammatester »

The new plugin.pas in the PluginSDK 1.70 build 2087 breaks existing code. During the compilation of my CRC/Hash plugin most error messages are related to the fact, that now integers are used instead of BOOL. A true bug is the field declaration of

FSF : TFarStandardFunctions;

in the TPluginStartupInfo record: The old plugin.pas (from 1.7 Beta5, $Revision: 1.224 09.04.2003 $) and the new C version expect a pointer

FSF: PFarStandardFunctions;

Wolfgang
User avatar
t-rex
Admin
Posts: 417
Joined: Sun Mar 20, 2005 6:10 pm
Location: Ashdod
Contact:

Post by t-rex »

Gammatester
Thanks for the report. We'll check it out.
Locked