Fredrik Kihlander
Fredrik Kihlander
Do you have any more info on what SymInitialize() requires for its paths? From the documentation of GetModuleFileName() the out name is "The string returned will use the same format...
Another question... I'm not really sure how I would handle something like this. If I get the path '../whoppa' I need to first get the absolute path. But if the...
I have tried a lot of cases here on the machine I have access to and I can only get GetModulePath() to return absolute-paths... But I guess this might be...
I also did a test to just hard code paths with dots all over the place and I still worked so that might be due to the version of dbghelp.dll...
Im a bit hesitant to adding to much machinery around hashes directly in the core library mostly as I don't feel that DL can decide what hash-function to use and...
When thinking a bit möte about this one more thing to take into consideration popped up. I know of another similar library that store the typelib after each packed instance...
Yes... user provided transforms is a good start. I however need to think about the api, especially if you want to switch types str -> uint32 for example.
I see bo real problem with this as long as your storage in dl is pod... but if it starts to contain subdata such as strings and arrays it get...
Supporting conversion to a struct with arrays or pointers would add quite a bit of complexity... especially since then you could actually chain them as well!
An idea that popped up during a walk... this might be combined with "type-conversion". Adding a function to convert from type-a to type-b could be used to upgrade data, but...