/* * Mbuni - Open Source MMS Gateway * * Empty wrapper library * * Copyright (C) 2008, Digital Solutions Ltd. - http://www.dsmagic.com * * Paul Bagyenda * * This program is proprietary software, refer to licence holder for details */ #include #include #include #include #include #include #include #include #include #include #include #include "mmsbox_mt_filter.h" static int myinit(Octstr *mmc_url, Octstr *mmc_id, Octstr *startup_params) { return 0; } static int myfilter(MIMEEntity **msg, Octstr *loc_url, Octstr *mmc_id) { return 0; } static void myclose(Octstr *mmc_id) { return; } struct MmsBoxMTfilter mmsbox_mt_filter = { .name = "Empty Wrapper", .init = myinit, .filter = myfilter, .destroy = myclose };