26 lines
720 B
C
26 lines
720 B
C
#ifndef NULLSOFT_ML_TRANSCODE_API_H
|
|
#define NULLSOFT_ML_TRANSCODE_API_H
|
|
|
|
#include <api/application/api_application.h>
|
|
extern api_application *applicationApi;
|
|
#define WASABI_API_APP applicationApi
|
|
|
|
#include "../Agave/Metadata/api_metadata.h"
|
|
extern api_metadata *metadataApi;
|
|
#define AGAVE_API_METADATA metadataApi
|
|
|
|
#include "../playlist/api_playlistmanager.h"
|
|
extern api_playlistmanager *playlistManager;
|
|
#define AGAVE_API_PLAYLISTMANAGER playlistManager
|
|
|
|
#include "../Agave/AlbumArt/api_albumart.h"
|
|
extern api_albumart *albumArtApi;
|
|
#define AGAVE_API_ALBUMART albumArtApi
|
|
|
|
#include "../Agave/Language/api_language.h"
|
|
|
|
#include "../Winamp/api_stats.h"
|
|
extern api_stats *statsApi;
|
|
#define AGAVE_API_STATS statsApi
|
|
|
|
#endif |