See ChangeLog

Monotone-Parent: aca091adf5e547dd91cb88d06d42c6cfd3fbe7e2
Monotone-Revision: 90fa2838afb37a071037bbb22e7b90cd8d61b44b

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2011-09-19T23:33:48
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Ludovic Marcotte
2011-09-19 23:33:48 +00:00
parent 8b02e53951
commit 731a6bd1d5
3 changed files with 57 additions and 6 deletions

View File

@@ -332,10 +332,17 @@ static NSCharacterSet *hexCharacterSet = nil;
return MAPISTORE_SUCCESS;
}
- (int) getPidLidBusyStatus: (void **) data // TODO
- (int) getPidLidBusyStatus: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx
{
*data = MAPILongValue (memCtx, 0x02);
uint8_t value;
value = 0x2; // olBusy
if (![event isOpaque])
value = 0x0; // olFree
*data = MAPILongValue (memCtx, value);
return MAPISTORE_SUCCESS;
}