comparison src/protocols/sametime/meanwhile/mw_srvc_store.h @ 11943:0110fc7c6a8a

[gaim-migrate @ 14234] Bringing things up to date with the last Meanwhile release, 0.5.0 and the last gaim-meanwhile plugin release, 1.2.5 (which should be the last plugin release against oldstatus, if all goes well with HEAD and no major bugs crop up) It builds, so that's a start. The status bits that have been empty since the first import of the sametime stuff are still empty, but I'm going to try and fill those in tomorrow. I've decided to try and start using HEAD actively, to encourage me to get this freaking prpl fully functional. committer: Tailor Script <tailor@pidgin.im>
author Christopher O'Brien <siege@pidgin.im>
date Wed, 02 Nov 2005 03:39:03 +0000
parents 3ef77720e577
children
comparison
equal deleted inserted replaced
11942:a24cfe32961a 11943:0110fc7c6a8a
25 #include <glib.h> 25 #include <glib.h>
26 #include "mw_common.h" 26 #include "mw_common.h"
27 27
28 28
29 /** Type identifier for the storage service */ 29 /** Type identifier for the storage service */
30 #define SERVICE_STORAGE 0x00000018 30 #define mwService_STORAGE 0x00000018
31 31
32 32
33 /** @struct mwServiceStorage 33 /** @struct mwServiceStorage
34 @see mwServiceStorage_new 34 @see mwServiceStorage_new
35 35
152 152
153 153
154 /** Initiates a load call to the storage service. If the service is 154 /** Initiates a load call to the storage service. If the service is
155 not currently available, the call will be cached and processed 155 not currently available, the call will be cached and processed
156 when the service is started. 156 when the service is started.
157
158 @param srvc the storage service
157 @param item storage unit to load 159 @param item storage unit to load
158 @param cb callback function when the load call completes 160 @param cb callback function when the load call completes
159 @param data user data for callback 161 @param data user data for callback
160 @param data_free optional cleanup function for user data 162 @param data_free optional cleanup function for user data
161 */ 163 */
166 168
167 169
168 /** Initiates a store call to the storage service. If the service is 170 /** Initiates a store call to the storage service. If the service is
169 not currently available, the call will be cached and processed 171 not currently available, the call will be cached and processed
170 when the service is started. 172 when the service is started.
173
174 @param srvc the storage service
171 @param item storage unit to save 175 @param item storage unit to save
172 @param cb callback function when the load call completes 176 @param cb callback function when the load call completes
173 @param data optional user data for callback 177 @param data optional user data for callback
174 @param data_free optional cleanup function for user data 178 @param data_free optional cleanup function for user data
175 */ 179 */