mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
23 lines
No EOL
593 B
C
23 lines
No EOL
593 B
C
#ifndef NULLSOFT_COVERDIRECTORY_API_H
|
|
#define NULLSOFT_COVERDIRECTORY_API_H
|
|
|
|
#include <api/service/api_service.h>
|
|
extern api_service *serviceManager;
|
|
#define WASABI_API_SVC serviceManager
|
|
|
|
#include <api/application/api_application.h>
|
|
#define WASABI_API_APP applicationApi
|
|
|
|
#include "../Agave/Config/api_config.h"
|
|
extern api_config *config;
|
|
#define AGAVE_API_CONFIG config
|
|
|
|
#include <api/memmgr/api_memmgr.h>
|
|
extern api_memmgr *memmgr;
|
|
#define WASABI_API_MEMMGR memmgr
|
|
|
|
#include "../Agave/Metadata/api_metadata.h"
|
|
extern api_metadata *metadataApi;
|
|
#define AGAVE_API_METADATA metadataApi
|
|
|
|
#endif |