I have no experience with DLLs though i'm a C programmer,
so i have some things to clear:
1. Is it better using a single DLL within DBP, or should i
split functions over a several DLL and use each at a time?
(my functions itself, don't allocate any memory)
2. Can a single DLL made of several CPP files?
3. I want to call a single C++ function, and pass it memblocks ptrs.
This function uses a lot of other C++ functions (I'm trying to
put my whole DB's logic into a C++ module):
Should i do the rc workaround with only that main function?
4. My DB's main loop calls each cycle, a DLL's function that deals
with the program logic, while the DB source deals with the
graphics. Should i DELETE DLL each cycle and load it on the next
loop cycle? or may i use the same loaded DLL?
5. I read some post of hacking DB/DBP executables. Is it more safe
to use DLLs rather than DBP?
I appreciate any information i get.
[solo]