123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef __ICAL_UID_H
- #define __ICAL_UID_H
- #include <kopano/zcdefs.h>
- #include <mapidefs.h>
- #include <string>
- namespace KC {
- extern _kc_export bool IsOutlookUid(const std::string &);
- HRESULT HrGenerateUid(std::string *lpStrUid);
- extern _kc_export HRESULT HrCreateGlobalID(ULONG named_tag, void *base, LPSPropValue *pv);
- extern _kc_export HRESULT HrGetICalUidFromBinUid(const SBinary &, std::string *uid);
- extern _kc_export HRESULT HrMakeBinUidFromICalUid(const std::string &uid, std::string *binuid);
- }
- #endif
|