C++ Tips
The following tips relate to C++ on Unix and Windows and above.
| Tip | Details |
| DLL Exports - show Geoff |
If you run "dumpbin /exports objpb.dll" from the command line, you'll see that objpb.dll exports "_ObjPBAddFolder@16". The 16 tells us that the function takes 4 parameters (at 4 bytes each = 16). This might help with future debugging. |
Click here to add your own tips.