You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
261 B
23 lines
261 B
/*
|
|
* File: menu.h
|
|
* Author: Sparky
|
|
*
|
|
* Created on ???????, 2013, ??? 2, 23:27
|
|
*/
|
|
|
|
#ifndef MENU_H
|
|
#define MENU_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void MenuInit();
|
|
extern void MenuTasks();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MENU_H */
|
|
|