0
votes
Byte level length description
Really you're only doing four calculations, so readability seems way more important here than efficiency. My approach to make something like this more readable is to …
1
vote
Can’t access variable in C++ DLL from a C app
In the dll source code you should have this implementation so that the .lib file exports the symbol:
extern "C" _declspec(dllexport) char* MyNewVariable = …
