Added new Panel stuff
[clinton/Smoothieware.git] / src / modules / utils / player / PlayerPublicAccess.h
1 #ifndef PLAYERPUBLICACCESS_H
2 #define PLAYERPUBLICACCESS_H
3
4 #define player_checksum CHECKSUM("player")
5 #define is_playing_checksum CHECKSUM("is_playing")
6 #define abort_play_checksum CHECKSUM("abort_play")
7 #define get_progress_checksum CHECKSUM("progress")
8
9 struct pad_progress {
10 int percent_complete;
11 int elapsed_secs;
12 };
13 #endif