Hello,

  This is an updated version of version checking for
excalibur plugs using Delphi. It has two methods of interest.

  DllVerify and GetVerInfo

  Usage for DllVerify...


  This is the PlugDllVerify entry point. See techspec.hlp in you api
  docs for more info.

   function  PlugDLLVerify(SlotH: LPSLOT; curOS: LongInt; info: Pointer;
          company: PChar; intern: PChar; ver: PChar;
          descript: PChar ):WORD;
   var VerObj: TVersions;
   begin
    VerObj := TVersions.Create( 'YOURPLG.DLL' );
    Result := VerObj.DllVerify(curOS, info, company, intern, ver, descript );
   end;

  GetVerInfo... take a look at the source. It's pretty self explanatory.


  I am almost done with a complete translation of the OPL. (Well, as
   close as you can come in Delphi.). Should be releasing that code
   in a week or so.

  Happy Plug'n
  Argon.