Resources and Tips for DLL writers
« Thread started on: Jun 24th, 2006, 4:20pm »
If you write DLLs for Liberty BASIC, here are a few things to remember:
Remember to always check your DLLs with an export viewer tool If a functions requires string parameters, make sure they are ASCII, not Unicode. LB strings are ASCII. This *may* change in LB5, since Carl is using a new set of tools. Make sure to provide good documentation and a sample program with your DLL. Many people are also more willing to test a DLL if source code is included. Test, test, test, and re-test your DLL before releasing it.
Dennis McKinney has a DLL Writing Tutorial at his website, The Liberty Belle.