I don't even have to post the implementation -- the interface declaration should be enough to give you the gist of things:

I don't even have to post the implementation -- the interface declaration should be enough to give you the gist of things:

function  LoadGlobalMemoryTables (LookupUtility : boolean; var sErrors : AnsiString): boolean;

I mean, just the name should send shivers down your spine.  ;-)

Comments

  1. A seasoned COBOL programmer can write a COBOL program in any language. ;-)

    ReplyDelete
  2. Ondrej Kelle I heard the same for FORTRAN :)

    ReplyDelete
  3. Simon Stuart What kind of errors do you expect ? :)

    ReplyDelete
  4. Looking at that method signature my first question is "what exceptions does it throw?". I just know that anything returning boolean and an error string is going to let a bunch of exceptions escape, unless it does a catch-all at the top level and returns the Exception.Message. I dunno which is worse.

    ReplyDelete

Post a Comment