-
Notifications
You must be signed in to change notification settings - Fork 17
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
SHGetFolderPath is Deprecated #4
Comments
Any chance you can submit a patch? I don't do much development under Windows so not terribly familiar with it. |
Same problem, but I can try it. Also, I noticed that on Visual Studio 2013 give errors about using deprecated functions (strcat instead of strcat_s) EDIT : |
Also, I'm trying to write a function to get the path to a resource/assests files. ie : Would return :
Also, would try some fallback locations before falling :
I don't have Mac or a OSX virtual machine, so I not have clue about these path on OSX, but I would guess that would extend the same paths that a BSD/Linux machine would use. |
A resource folder is a very difficult problem, because it can change depending on how the application was installed. Under Linux, it could be Under Windows it can be Under Mac I think it goes into something like Difficult problem! |
Well.. I ended doing here : |
This function is deprecated. On Windows Vista/7/8/10, should be SHGetKnownFolderPath
https://msdn.microsoft.com/en-us/library/windows/desktop/bb762181(v=vs.85).aspx
The text was updated successfully, but these errors were encountered: