Add files via upload

This commit is contained in:
nmset
2017-12-17 17:43:17 +01:00
committed by GitHub
parent 7cb7fbcfd0
commit 08125ac989
26 changed files with 2540 additions and 0 deletions

28
globals.h Normal file
View File

@@ -0,0 +1,28 @@
/*
* File: globals.h
* Author: SET - nmset@netcourrier.com
* License : GPL V2
*
* Created on 10 décembre 2017, 20:27
*/
#ifndef GLOBALS_H
#define GLOBALS_H
#define _APPNAME_ "PMP7" // Pedal control for Media Player
#define _APP_DESCRIPTION_ "Controls media playback by foot pedal"
#define _VERSION_ "1"
#define _AUTHOR_ "SET - nmset@netcourrier.com"
#define _ABOUT_ string(_APPNAME_) + string(" - version ") + string(_VERSION_) \
+ string(" - ") + string(_APP_DESCRIPTION_) + _DOT_ \
+ string("\nAuthor : ") + string(_AUTHOR_) \
+ string("\nLicense : GPL v2")
#define _DOT_ "."
#define _SPACE_ " "
#define _COMMA_ ","
#define _COLON_ ":"
#define _NL_ "\n"
#endif /* GLOBALS_H */