freebusyguid.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright 2005 - 2016 Zarafa and its licensors
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU Affero General Public License, version 3,
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU Affero General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU Affero General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. *
  16. */
  17. /**
  18. * @file
  19. * Free/busy Interface identifiers
  20. *
  21. * @addtogroup libfreebusy
  22. * @{
  23. */
  24. #ifndef FREEBUSYGUID_INCLUDED
  25. #define FREEBUSYGUID_INCLUDED
  26. // Interface identifiers for the Free/Busy API
  27. #if !defined(INITGUID) || defined(USES_IID_IEnumFBBlock)
  28. /** IEnumFBBlock interface identifier. GUID: {00067064-0000-0000-C000-000000000046} */
  29. DEFINE_GUID(IID_IEnumFBBlock, 0x00067064, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x46);
  30. #endif
  31. #if !defined(INITGUID) || defined(USES_IID_IFreeBusyUpdate)
  32. /** IFreeBusyUpdate interface identifier. GUID: {00067065-0000-0000-C000-000000000046} */
  33. DEFINE_GUID(IID_IFreeBusyUpdate, 0x00067065, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x46);
  34. #endif
  35. #if !defined(INITGUID) || defined(USES_IID_IFreeBusyData)
  36. /** IFreeBusyData interface identifier. GUID: {00067066-0000-0000-C000-000000000046} */
  37. DEFINE_GUID(IID_IFreeBusyData, 0x00067066, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x46);
  38. #endif
  39. #if !defined(INITGUID) || defined(USES_IID_IFreeBusySupport)
  40. /** IFreeBusySupport interface identifier. GUID: {00067067-0000-0000-C000-000000000046} */
  41. DEFINE_GUID(IID_IFreeBusySupport, 0x00067067, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x46);
  42. #endif
  43. // Unknown Freebusy guids
  44. // DEFINE_GUID(IID_I??, 0x00067068, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x46);//{00067068-0000-0000-C000-000000000046}
  45. // DEFINE_GUID(IID_I??, 0x00067069, 0x0, 0x0, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x46);//{00067069-0000-0000-C000-000000000046}
  46. #endif // FREEBUSYGUID_INCLUDED
  47. /** @} */