Not sure if this belongs in this topic.
I know that you can use a DLL with the Library functions but can a Static Linkable Library be used with PureBasic?
I really am not quite sure of the difference between a Static and Dynamic library.
Difference between Static Linkable Library and DLL
viewtopic.php?t=16485
is thread about linking .obj / .lib files into your PB code and use them from there...
is thread about linking .obj / .lib files into your PB code and use them from there...
Don't mix static LIB or OBJ (where true code is linked to your EXE) with automatic linking of DLLs at load time. When you link a LIB of a DLL, usually you don't include the code, but you make Windows open the DLL for you when your EXE is executed. So you don't need to open manually the DLL and find the functions.


