summaryrefslogtreecommitdiff
path: root/library/Recycler_Vista/recycler.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:15 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:15 +0200
commit8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395 (patch)
tree975c6e590c31e56007006a23e7b15d0245d75b08 /library/Recycler_Vista/recycler.h
parent3.6 (diff)
downloadFreeFileSync-8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395.tar.gz
FreeFileSync-8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395.tar.bz2
FreeFileSync-8318453bf9d4fd50b137ff6c6fc8d1fd22aa6395.zip
3.7
Diffstat (limited to 'library/Recycler_Vista/recycler.h')
-rw-r--r--library/Recycler_Vista/recycler.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/library/Recycler_Vista/recycler.h b/library/Recycler_Vista/recycler.h
deleted file mode 100644
index 697221c3..00000000
--- a/library/Recycler_Vista/recycler.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// **************************************************************************
-// * This file is part of the FreeFileSync project. It is distributed under *
-// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
-// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) *
-// **************************************************************************
-//
-#ifndef RECYCLER_DLL_H
-#define RECYCLER_DLL_H
-
-#ifdef RECYCLER_DLL_EXPORTS
-#define RECYCLER_DLL_API extern "C" __declspec(dllexport)
-#else
-#define RECYCLER_DLL_API extern "C" __declspec(dllimport)
-#endif
-
-
-namespace Utility
-{
-//COM needs to be initialized before calling any of these functions! CoInitializeEx/CoUninitialize
-
-RECYCLER_DLL_API
-bool moveToRecycleBin(const wchar_t* fileNames[],
- size_t fileNo, //size of fileNames array
- wchar_t* errorMessage,
- size_t errorBufferLen);
-}
-
-
-
-#endif //RECYCLER_DLL_H
bgstack15