Monotone-Parent: 1b66e85ded0b1d64105f0f5d2035ef81e9a8eb4f

Monotone-Revision: 8d4ca03b16c54609dce23f43fc358a43d7e96d99

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-08-10T21:03:05
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2012-08-10 21:03:05 +00:00
parent a735498d7b
commit dd48699bb3
4 changed files with 56 additions and 0 deletions

View File

@@ -150,6 +150,24 @@ static Class NSExceptionK, MAPIStoreFolderK;
return properties;
}
- (enum mapistore_error) getURI: (char **) uriP
inMemCtx: (TALLOC_CTX *) memCtx
{
enum mapistore_error rc;
NSString *url;
url = [self url];
if (url)
{
*uriP = [url asUnicodeInMemCtx: memCtx];
rc = MAPISTORE_SUCCESS;
}
else
rc = MAPISTORE_ERR_NOT_FOUND;
return rc;
}
- (int) getProperty: (void **) data
withTag: (enum MAPITAGS) propTag
inMemCtx: (TALLOC_CTX *) memCtx