summaryrefslogtreecommitdiff
path: root/library/Recycler_Vista/recycler.h
blob: 697221c3e151de676dd5301b0761445c0dedef6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// **************************************************************************
// * 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