diff options
author | bigbiff bigbiff <bigbiff@teamw.in> | 2016-09-06 03:04:51 +0200 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2017-11-27 16:32:30 +0100 |
commit | 19fb79c722622ac4a068e258501ab4b161420cda (patch) | |
tree | 87791149590c18e019d20818dd61279e3b4829b2 /twrpAdbBuFifo.hpp | |
parent | Improve greek translation (diff) | |
download | android_bootable_recovery-19fb79c722622ac4a068e258501ab4b161420cda.tar android_bootable_recovery-19fb79c722622ac4a068e258501ab4b161420cda.tar.gz android_bootable_recovery-19fb79c722622ac4a068e258501ab4b161420cda.tar.bz2 android_bootable_recovery-19fb79c722622ac4a068e258501ab4b161420cda.tar.lz android_bootable_recovery-19fb79c722622ac4a068e258501ab4b161420cda.tar.xz android_bootable_recovery-19fb79c722622ac4a068e258501ab4b161420cda.tar.zst android_bootable_recovery-19fb79c722622ac4a068e258501ab4b161420cda.zip |
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 |