~ubuntu-branches/debian/sid/openchange/sid

« back to all changes in this revision

Viewing changes to mapiproxy/libmapiserver/libmapiserver_oxcfold.c

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2012-04-12 20:07:57 UTC
  • mfrom: (11 sid)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20120412200757-k933d9trljmxj1l4
Tags: 1:1.0-4
* openchangeserver: Add dependency on openchangeproxy.
* Rebuild against newer version of Samba 4.
* Use dpkg-buildflags.
* Migrate to Git, update Vcs-Git header.
* Switch to debhelper 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
        size += SIZE_DFLT_ROPEMPTYFOLDER;
226
226
        return size;
227
227
}
 
228
 
 
229
/**
 
230
   \details Calculate MoveCopyMessages rop size
 
231
 
 
232
   \param response pointer to the MoveCopyMessags EcDoRpc_MAPI_REPL
 
233
   structure
 
234
 
 
235
   \return Size of MoveCopyMessages response
 
236
 */
 
237
_PUBLIC_ uint16_t libmapiserver_RopMoveCopyMessages_size(struct EcDoRpc_MAPI_REPL *response)
 
238
{
 
239
        uint16_t        size = SIZE_DFLT_MAPI_RESPONSE;
 
240
 
 
241
        if (!response || response->error_code) {
 
242
                return size;
 
243
        }
 
244
 
 
245
        size += SIZE_DFLT_ROPMOVECOPYMESSAGES;
 
246
        return size;
 
247
}