daemon.h
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*----------------------------------------------------------------------*
  2.   daemon.h                                                 
  3.   
  4.   This module has the functions needed for a program to become a daemon.
  5.   Copyright (c) 1997-1999 Quicknet Technologies, Inc.
  6.     
  7.   Written by Greg Herlein <gherlein@quicknet.net>, donated to Quicknet
  8.   Technologies, Inc. 6/10/99. 
  9.   
  10.  * This is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU Lesser General Public
  12.  * License (LGPL) as published by the Free Software Foundation; either
  13.  * version 2 of the License, or (at your option) any later version.
  14.  *
  15.  * This software is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18.  * General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU Lesser General Public
  21.  * License along with this library; if not, write to the
  22.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23.  * Boston, MA 02111-1307, USA.  It is also available online at 
  24.  * http://www.gnu.org/copyleft/lesser.html
  25.  
  26. ----------------------------------------------------------------------*/
  27. #ifndef __DAEMON_H
  28. #define __DAEMON_H 
  29. /*----------------------------< Defines >-------------------------------*/
  30. /*----------------------------< Includes >------------------------------*/
  31. /*---------------------------< Definitions >----------------------------*/
  32. /*--------------------------< Declarations >----------------------------*/
  33. int     daemon_init(void);
  34. /*----------------------------------------------------------------------*/
  35. #endif /*__DAEMON_H */
  36. /*-------------------------------< End >--------------------------------*/