blob: 118396b3055abfce4e6f7adb60e1dcd13dd92d75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Update.h
*
* Created on: Jun 21, 2012
* Author: Simon
*/
#ifndef UPDATE_H_
#define UPDATE_H_
//char *exe_name(void);
int update_start(char *data, int len);
int update_finish(void);
void update_cleanup(void);
#endif /* UPDATE_H_ */
|