/src/l.h

http://bdremote-ng.googlecode.com/ · C Header · 53 lines · 7 code · 10 blank · 36 comment · 0 complexity · 3ee30be2fc8ff7c16021c1b9e3391777 MD5 · raw file

  1. /*
  2. * bdremoteng - helper daemon for Sony(R) BD Remote Control
  3. * Based on bdremoted, written by Anton Starikov <antst@mail.ru>.
  4. *
  5. * Copyright (C) 2009 Michael Wojciechowski <wojci@wojci.dk>
  6. *
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  21. *
  22. */
  23. /** @defgroup log Logging */
  24. /*@{*/
  25. /*! \file l.h
  26. \brief Logging.
  27. Support function to setup logging to a file/stdout.
  28. */
  29. #ifndef BD_L_H
  30. #define BD_L_H
  31. #include <bdrcfg.h>
  32. /** Set the default log - stdout. */
  33. void setDefaultLog();
  34. /** Set logging to the file specified in the config. If no file is
  35. specified, do nothing. */
  36. int setLogFile(const configuration* _config);
  37. /** Close the log file previously opened for reading. If none was
  38. opened, do nothing.*/
  39. void closeLogFile();
  40. #endif /* BD_L_H */
  41. /*@}*/