1 
2 /*
3    BAREOS® - Backup Archiving REcovery Open Sourced
4 
5    Copyright (C) 2018-2018 Bareos GmbH & Co. KG
6 
7    This program is Free Software; you can redistribute it and/or
8    modify it under the terms of version three of the GNU Affero General Public
9    License as published by the Free Software Foundation and included
10    in the file LICENSE.
11 
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15    Affero General Public License for more details.
16 
17    You should have received a copy of the GNU Affero General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20    02110-1301, USA.
21 */
22 #ifndef BAREOS_WIN32_FINDLIB_WIN32_H_
23 #define BAREOS_WIN32_FINDLIB_WIN32_H_
24 
25 
26 bool expand_win32_fileset(findFILESET* fileset);
27 bool exclude_win32_not_to_backup_registry_entries(JobControlRecord* jcr,
28                                                   FindFilesPacket* ff);
29 int get_win32_driveletters(findFILESET* fileset, char* szDrives);
30 bool win32_onefs_is_disabled(findFILESET* fileset);
31 void win32_cleanup_copy_thread(JobControlRecord* jcr);
32 void win32_flush_copy_thread(JobControlRecord* jcr);
33 int win32_send_to_copy_thread(JobControlRecord* jcr,
34                               BareosWinFilePacket* bfd,
35                               char* data,
36                               const int32_t length);
37 
38 #endif  // BAREOS_WIN32_FINDLIB_WIN32_H_
39