1 /* Copyright (c) Mark Harmstone 2017 2 * 3 * This file is part of WinBtrfs. 4 * 5 * WinBtrfs is free software: you can redistribute it and/or modify 6 * it under the terms of the GNU Lesser General Public Licence as published by 7 * the Free Software Foundation, either version 3 of the Licence, or 8 * (at your option) any later version. 9 * 10 * WinBtrfs is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU Lesser General Public Licence for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public Licence 16 * along with WinBtrfs. If not, see <http://www.gnu.org/licenses/>. */ 17 18 #pragma once 19 20 #ifdef __REACTOS__ 21 #include "btrfs.h" 22 #include <stdlib.h> 23 #else 24 #include "../btrfs.h" 25 #endif 26 27 class BtrfsSend { 28 public: BtrfsSend()29 BtrfsSend() { 30 started = false; 31 file[0] = 0; 32 dirh = INVALID_HANDLE_VALUE; 33 stream = INVALID_HANDLE_VALUE; 34 subvol = L""; 35 buf = nullptr; 36 incremental = false; 37 } 38 ~BtrfsSend()39 ~BtrfsSend() { 40 if (buf) 41 free(buf); 42 } 43 44 void Open(HWND hwnd, WCHAR* path); 45 INT_PTR SendDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); 46 DWORD Thread(); 47 48 private: 49 void StartSend(HWND hwnd); 50 void Browse(HWND hwnd); 51 void BrowseParent(HWND hwnd); 52 void AddClone(HWND hwnd); 53 void RemoveClone(HWND hwnd); 54 55 bool started; 56 bool incremental; 57 WCHAR file[MAX_PATH], closetext[255]; 58 HANDLE thread, dirh, stream; 59 HWND hwnd; 60 wstring subvol; 61 char* buf; 62 vector <wstring> clones; 63 }; 64