aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/windows/windows-fs.h
AgeCommit message (Collapse)Author
2019-08-06BACKENDS: Rename and simplify AbstractFSNode::create()Cameron Cawley
2018-12-17WIN32: Always include windows.h before util.hSupSuper
This avoids Windows trying to stomp our definition of ARRAYSIZE
2018-12-17WIN32: Move all ARRAYSIZE undefs to util.hSupSuper
Instead of trying to undefine ARRAYSIZE everywhere we use a Windows header, let's just do it before we define our own
2017-01-12WIN32: Fix Variable Shadowing Compiler Warnings.D G Turner
These are emitted when using the MinGW compiler.
2016-08-24CLOUD: Make download() create necessary directoriesAlexander Tkachev
DumpFile::open() with createPath=true create would create the missing directories from the path before opening a file. Thus, one can easily create a file and avoid "can't open a file" error.
2014-02-18WIN32: Make GPL headers consistent in themselves.Johannes Schickel
2011-06-28BACKENDS: Update WindowsFilesystemNode::getChildren() to honor the hidden ↵Littleboy
parameter (FR #1726611) Hidden folders (such as the recycle bin or temporary hidden folders) will no longer be visible in the file/folder browser (as is the case on the Posix and related backends)
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-05-03BACKENDS: Avoid #including .cpp filesMax Horn
So far, the various *-fs-factory.cpp files were #including the corresponding *-fs.cpp files. This is surprising and hence could lead to all kinds of problems). To fix this, provide proper headers for the *-fs.cpp files. This also makes code reuse via subclassing possible. Since not all ports were tested, this will likely lead to a few easy to fix compile regressions.