I am working on Windows XP / Delphi 7. I need to add some procedures (or functions) inside an executable program, and I do not want to recompile it again after I have finished it.
I have a host application with 5 functions for sending various types of alarms, but there are other new types of alarms, so I have to perform new functions for sending these alarms, but I do not have to rebuild the host application. I have a class called TAlarmManager that called these functions.
Maybe a plugin ??? Ok, but how can I “insert” new features ??? A tutorial, guide, book, etc., to find out about this or any tips on how to do this.
I studied plugins (I'm completely new on this topic), but no one is “talking” about adding features to the host application. It seems to me that plugins add functionality on their own, I mean, they were developed using native code to do something, and not to "add" code to the host application ... How can I do this?
source share