/*MT* MediaTomb - http://www.mediatomb.cc/ web_callbacks.h - this file is part of MediaTomb. Copyright (C) 2005 Gena Batyan , Sergey 'Jin' Bostandzhyan Copyright (C) 2006-2007 Gena Batyan , Sergey 'Jin' Bostandzhyan , Leonhard Wimmer MediaTomb is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. MediaTomb is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License version 2 along with MediaTomb; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. $Id: web_callbacks.h 1124 2007-02-17 21:49:15Z lww $ */ /// \file web_callbacks.h #ifndef WEB_CALLBACKS_H #define WEB_CALLBACKS_H /// \brief Registers callback functions for the internal web server. /// /// This function registers callbacks for the internal web server. /// The callback functions are: /// \b web_get_info Query information on a file. /// \b web_open Open a file. /// \b web_read Sequentially read from a file. /// \b web_write Sequentially write to a file (not supported). /// \b web_seek Perform a seek on a file. /// \b web_close Close file. /// /// \return UPNP_E_SUCCESS Callbacks registered successfully, else eror code. int register_web_callbacks(); #endif