My Project
Loading...
Searching...
No Matches
util.h
1/* util.h */
2
3#ifndef UTIL_H_
4#define UTIL_H_
5
6int sdcard_open(MQX_FILE_PTR *com_handle, MQX_FILE_PTR *sdcard_handle,
7 MQX_FILE_PTR *partman_handle, MQX_FILE_PTR *filesystem_handle,
8 char *partman_name, char *filesystem_name);
9
10int sdcard_close(MQX_FILE_PTR *sdcard_handle, MQX_FILE_PTR *partman_handle,
11 MQX_FILE_PTR *filesystem_handle,
12 char *partman_name, char *filesystem_name);
13
14#endif /* UTIL_H_ */