2082d38002b0be1eb694f21c739071000686ed8a
[tridge/openchange.git] / branches / plugfest / mapiproxy / libmapiserver / libmapiserver_oxorule.c
1 /*
2    libmapiserver - MAPI library for Server side
3
4    OpenChange Project
5
6    Copyright (C) Julien Kerihuel 2009
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22 /**
23    \file libmapiserver_oxorule.c
24
25    \brief OXORULE ROP Response size calculations
26  */
27
28 #include "libmapiserver.h"
29
30 /**
31    \details Calculate GetRulesTable Rop size
32
33    \return Size of GetRulesTable response
34  */
35 _PUBLIC_ uint16_t libmapiserver_RopGetRulesTable_size(void)
36 {
37         uint16_t        size = SIZE_DFLT_MAPI_RESPONSE;
38
39         return size;
40 }
41
42
43 /**
44    \details Calculate ModifyRules Rop size
45
46    \return Size of ModifyRules response
47  */
48 _PUBLIC_ uint16_t libmapiserver_RopModifyRules_size(void)
49 {
50         uint16_t        size = SIZE_DFLT_MAPI_RESPONSE;
51
52         return size;
53 }