blob: 9958330aa673b88df5b4e0eb162da3f35e861000 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Android Recovery supported header file
*
* Copyright (C) 2010 Freescale Semiconductor.
*
* This software may be used and distributed according to the
* terms of the GNU Public License, Version 2, incorporated
* herein by reference.
*/
#ifndef __RECOVERY_H_
#define __RECOVERY_H_
struct reco_envs {
char *cmd;
char *args;
};
#endif
|