After testing your DLL, you may notice that the DLL file you created was large (in my program 1259 K (1.2 M)) for the amount of code you created. This is because your DLL contains debugging information about your code as well as the OWL code you used.
To reduce the size of the code, return to your DLL project and select Edit local options from the right button menu for the dll.
Once you have the options menu, select linker options, General. There you can uncheck "Include debug information."
Next select the Compiler options. Here you want to look under debugging and remove Debug information in OBJs and Browser reference information in OBJs.
After this is done Rebuild your DLL. My rebuilt DLL was 60k as compared to 1.2 Meg.
Return to Main Discussion