-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Load media on start #94
base: master
Are you sure you want to change the base?
Conversation
This is necessary, because on windows the linker will optimize out all unused, unmarked symbols. Only symbols with declspec(dllexport) will survive in the DLL. And dllexport must only be set when actually building the DLL. When just using the headers, you'll need to leave it out (or use dllimport as an optimization).
Instead of manually concatenating and splitting a string with all the filenames in the case of an You can see the old implementation here: |
Trying to read a Correspoding code:
I don't know what this mean, maybe a deserializer is missing. |
Likely obsolete or requiring major rework in the Biotracker3. @hmoenck? |
@walachey Yup, the new tree structure is somewhat more complex than the old vector structure. I was striving to serialize these to/from CSV manually. This is only halfway done yet. |
Previously loaded media were loaded again by starting the Biotracker in old Biotracker. This behaviour has been ported to new Biotracker.