api_urlmanager.h 567 B

123456789101112131415161718192021222324252627
  1. #pragma once
  2. #include <bfc/dispatch.h>
  3. #include <bfc/platform/guid.h>
  4. class api_urlmanager : public Dispatchable
  5. {
  6. protected:
  7. api_urlmanager(){}
  8. ~api_urlmanager(){}
  9. public:
  10. const wchar_t *GetURL(const wchar_t *urlid);
  11. enum
  12. {
  13. API_URLMANAGER_GETURL=0,
  14. };
  15. };
  16. inline const wchar_t *api_urlmanager::GetURL(const wchar_t *urlid)
  17. {
  18. return _call(API_URLMANAGER_GETURL, (const wchar_t *)0, urlid);
  19. }
  20. // {B5E9E32E-4C4A-49d6-804F-8858B396F27E}
  21. static const GUID urlManagerGUID =
  22. { 0xb5e9e32e, 0x4c4a, 0x49d6, { 0x80, 0x4f, 0x88, 0x58, 0xb3, 0x96, 0xf2, 0x7e } };