diff options
author | B Stack <bgstack15@gmail.com> | 2020-08-31 20:07:13 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-08-31 20:07:13 -0400 |
commit | 8a27fa9c617533e76673ce61a65e2ba869b52208 (patch) | |
tree | acfdfb3e1046db87040477033fda0df76d92916a /zen/recycler.h | |
parent | Merge branch '11.0' into 'master' (diff) | |
download | FreeFileSync-8a27fa9c617533e76673ce61a65e2ba869b52208.tar.gz FreeFileSync-8a27fa9c617533e76673ce61a65e2ba869b52208.tar.bz2 FreeFileSync-8a27fa9c617533e76673ce61a65e2ba869b52208.zip |
add upstream 11.1
Diffstat (limited to 'zen/recycler.h')
-rw-r--r-- | zen/recycler.h | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/zen/recycler.h b/zen/recycler.h index ad96aa53..deb03a1c 100644 --- a/zen/recycler.h +++ b/zen/recycler.h @@ -14,24 +14,21 @@ namespace zen { -/* --------------------- -|Recycle Bin Access| --------------------- +/* -------------------- + |Recycle Bin Access| + -------------------- -Windows -------- --> Recycler API (IFileOperation) always available --> COM needs to be initialized before calling any of these functions! CoInitializeEx/CoUninitialize + Windows + ------- + -> Recycler API (IFileOperation) always available + -> COM needs to be initialized before calling any of these functions! CoInitializeEx/CoUninitialize -Linux ------ -Compiler flags: `pkg-config --cflags gio-2.0` -Linker flags: `pkg-config --libs gio-2.0` - -Already included in package "gtk+-2.0"! -*/ + Linux + ----- + Compiler flags: `pkg-config --cflags gio-2.0` + Linker flags: `pkg-config --libs gio-2.0` + Already included in package "gtk+-2.0"! */ //move a file or folder to Recycle Bin (deletes permanently if recycler is not available) -> crappy semantics, but we have no choice thanks to Windows' design |