api.h 1014 B

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef NULLSOFT_APIH
  2. #define NULLSOFT_APIH
  3. #include <api/service/api_service.h>
  4. extern api_service *serviceManager;
  5. #define WASABI_API_SVC serviceManager
  6. #include <api/service/waServiceFactory.h>
  7. #include "../Agave/language/api_language.h"
  8. #include "../Agave/queue/api_queue.h"
  9. #include <api/memmgr/api_memmgr.h>
  10. extern api_memmgr *memmgrApi;
  11. #define WASABI_API_MEMMGR memmgrApi
  12. #include <api/service/svcs/svc_imgload.h>
  13. #include <api/service/svcs/svc_imgwrite.h>
  14. #include "../Agave/AlbumArt/api_albumart.h"
  15. #include "../Agave/ExplorerFindFile/api_explorerfindfile.h"
  16. // {B6CB4A7C-A8D0-4c55-8E60-9F7A7A23DA0F}
  17. static const GUID playbackConfigGroupGUID =
  18. { 0xb6cb4a7c, 0xa8d0, 0x4c55, { 0x8e, 0x60, 0x9f, 0x7a, 0x7a, 0x23, 0xda, 0xf } };
  19. #include "..\Agave/Config/api_config.h"
  20. extern api_config *configApi;
  21. #define AGAVE_API_CONFIG configApi
  22. #include "..\..\..\Components\wac_network\wac_network_http_receiver_api.h"
  23. #include "..\..\..\Components\wac_downloadManager\wac_downloadManager_api.h"
  24. #endif