api.h 593 B

1234567891011121314151617181920212223
  1. #ifndef NULLSOFT_COVERDIRECTORY_API_H
  2. #define NULLSOFT_COVERDIRECTORY_API_H
  3. #include <api/service/api_service.h>
  4. extern api_service *serviceManager;
  5. #define WASABI_API_SVC serviceManager
  6. #include <api/application/api_application.h>
  7. #define WASABI_API_APP applicationApi
  8. #include "../Agave/Config/api_config.h"
  9. extern api_config *config;
  10. #define AGAVE_API_CONFIG config
  11. #include <api/memmgr/api_memmgr.h>
  12. extern api_memmgr *memmgr;
  13. #define WASABI_API_MEMMGR memmgr
  14. #include "../Agave/Metadata/api_metadata.h"
  15. extern api_metadata *metadataApi;
  16. #define AGAVE_API_METADATA metadataApi
  17. #endif