35 lines
962 B
C
35 lines
962 B
C
|
#pragma once
|
||
|
|
||
|
#include "../Agave/Language/api_language.h"
|
||
|
|
||
|
#include "../Agave/Metadata/api_metadata.h"
|
||
|
extern api_metadata *metadataApi;
|
||
|
#define AGAVE_API_METADATA metadataApi
|
||
|
|
||
|
#include "../playlist/api_playlistmanager.h"
|
||
|
extern api_playlistmanager *playlistManagerApi;
|
||
|
#define WASABI_API_PLAYLISTMNGR playlistManagerApi
|
||
|
|
||
|
#include "../nu/threadpool/api_threadpool.h"
|
||
|
extern api_threadpool *threadPoolApi;
|
||
|
#define WASABI_API_THREADPOOL threadPoolApi
|
||
|
|
||
|
#include "../Agave/AlbumArt/api_albumart.h"
|
||
|
extern api_albumart *albumArtApi;
|
||
|
#define AGAVE_API_ALBUMART albumArtApi
|
||
|
|
||
|
#include <api/memmgr/api_memmgr.h>
|
||
|
extern api_memmgr *memmgr;
|
||
|
#define WASABI_API_MEMMGR memmgr
|
||
|
|
||
|
#include <api/application/api_application.h>
|
||
|
extern api_application *applicationApi;
|
||
|
#define WASABI_API_APP applicationApi
|
||
|
|
||
|
#include "../devices/api_devicemanager.h"
|
||
|
extern api_devicemanager *deviceManagerApi;
|
||
|
#define AGAVE_API_DEVICEMANAGER deviceManagerApi
|
||
|
|
||
|
void WasabiInit();
|
||
|
void WasabiQuit();
|