diff options
Diffstat (limited to '')
-rw-r--r-- | twrpAdbBuFifo.hpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/twrpAdbBuFifo.hpp b/twrpAdbBuFifo.hpp new file mode 100644 index 000000000..e709b9671 --- /dev/null +++ b/twrpAdbBuFifo.hpp @@ -0,0 +1,40 @@ +/* + Copyright 2013 to 2017 TeamWin + This file is part of TWRP/TeamWin Recovery Project. + + TWRP is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + TWRP is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with TWRP. If not, see <http://www.gnu.org/licenses/>. +*/ + +#ifndef TWRPADBFIFO_HPP +#define TWRPADBFIFO_HPP + +#include <string> +#include <pthread.h> + +#define TW_ADB_FIFO "/tmp/twadbfifo" + +class twrpAdbBuFifo { + public: + twrpAdbBuFifo(void); + pthread_t threadAdbBuFifo(void); + private: + bool start(void); + bool Backup_ADB_Command(std::string Options); + bool Check_Adb_Fifo_For_Events(void); + bool Restore_ADB_Backup(void); + typedef bool (twrpAdbBuFifo::*ThreadPtr)(void); + typedef void* (*PThreadPtr)(void *); + int adb_fifo_fd; +}; +#endif |