mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-02 05:36:23 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user