How to create dll library from LotusScript Library?
Subject: You’ll need the C API Toolkit
At a high level:
-
Get MS Visual Studio (not free)
-
Download the Notes/Domino C API Toolkit (free)
-
Read the user’s guide for how to set up Visual Studio to create DLLs.
-
Write the C (or C++) code that mimics what your Script Library does.
-
Compile and test. Repeat.
As s side-effect, you will lose platform independence (i.e., your DLL will work only on Windows machines.) However, you can set up similar C API environments for Linux, AIX, Solaris, etc. and redo the above steps to create shared object files (or the like) for each environment that you’ll need to support.
– Grant