comparison src/mms/mms.c @ 1148:884966a37b7b trunk

[svn] - mms: convert to plugin2 architecture
author nenolod
date Mon, 28 May 2007 03:15:02 -0700
parents f1642ee1115c
children ed2d7787779e
comparison
equal deleted inserted replaced
1147:a4f8f966b275 1148:884966a37b7b
228 #if 0 228 #if 0
229 vfs_unregister_transport(&mms_const); 229 vfs_unregister_transport(&mms_const);
230 #endif 230 #endif
231 } 231 }
232 232
233 LowlevelPlugin llp_mms = { 233 DECLARE_PLUGIN(mms, init, cleanup, NULL, NULL, NULL, NULL, NULL);
234 NULL,
235 NULL,
236 "mms:// URI Transport",
237 init,
238 cleanup,
239 };
240
241 LowlevelPlugin *get_lplugin_info(void)
242 {
243 return &llp_mms;
244 }
245