Monotone-Parent: ea1c783b905b07e028051a8a9d8f7bf4c894b0f2

Monotone-Revision: 52d4d51e45d656f36fb470bd76ffe251fdc37b9c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-05-31T05:01:43
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-05-31 05:01:43 +00:00
parent a5440bd52d
commit 29056ba07d
4 changed files with 33 additions and 9 deletions
+7 -3
View File
@@ -48,6 +48,7 @@
@interface MAPIStoreContext : NSObject
{
struct mapistore_context *memCtx;
struct mapistore_connection_info *connInfo;
NSURL *contextUrl;
uint64_t contextFid;
@@ -62,17 +63,20 @@
}
+ (id) contextFromURI: (const char *) newUri
withConnectionInfo: (struct mapistore_connection_info *) newConnInfo
andFID: (uint64_t) fid
inMemCtx: (struct mapistore_context *) newMemCtx;
- (id) initFromURL: (NSURL *) newUri
andFID: (uint64_t) fid
inMemCtx: (struct mapistore_context *) newMemCtx;
- (id) initFromURL: (NSURL *) newUri
withConnectionInfo: (struct mapistore_connection_info *) newConnInfo
andFID: (uint64_t) fid
inMemCtx: (struct mapistore_context *) newMemCtx;
- (void) setAuthenticator: (MAPIStoreAuthenticator *) newAuthenticator;
- (MAPIStoreAuthenticator *) authenticator;
- (NSURL *) url;
- (struct mapistore_connection_info *) connectionInfo;
- (WOContext *) woContext;