33 lines
914 B
C
33 lines
914 B
C
/*
|
|
Copyright 2015 bigbiff/Dees_Troy 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 __PLACEMENT_H
|
|
#define __PLACEMENT_H
|
|
|
|
enum Placement {
|
|
TOP_LEFT = 0,
|
|
TOP_RIGHT = 1,
|
|
BOTTOM_LEFT = 2,
|
|
BOTTOM_RIGHT = 3,
|
|
CENTER = 4,
|
|
CENTER_X_ONLY = 5,
|
|
TEXT_ONLY_RIGHT = 6,
|
|
};
|
|
|
|
#endif // __PLACEMENT_H
|