libeplayer3-arm: cleanup types, use Context_t in commands

Origin commit data
------------------
Branch: master
Commit: 98823b7457
Author: max_10 <max_10@gmx.de>
Date: 2018-03-07 (Wed, 07 Mar 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
max_10
2018-03-07 23:59:23 +01:00
committed by TangoCash
parent e6c5999d1d
commit 59b0eeba27
32 changed files with 194 additions and 182 deletions

View File

@@ -69,7 +69,7 @@ if (debug_level >= level) printf(x); } while (0)
static Track_t *Tracks = NULL;
static int TrackCount = 0;
static int CurrentTrack = -1; //no as default.
static int CurrentTrack = -1; //no as default.
/* ***************************** */
/* Prototypes */
@@ -256,7 +256,7 @@ static int Command(Context_t *context, ManagerCmd_t command, void *argument)
{
if ((TrackCount > 0) && (CurrentTrack >= 0))
{
*((Track_t **)argument) = (Track_t *) &Tracks[CurrentTrack];
*((Track_t **)argument) = (Track_t *) & Tracks[CurrentTrack];
}
else
{