/src/bdremoteng.h

http://bdremote-ng.googlecode.com/ · C Header · 59 lines · 6 code · 9 blank · 44 comment · 0 complexity · 3d1fda862dd3b297b11dd5e797943255 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 app Application
  24. * This group contains the non-generic parts of the application.
  25. * @{
  26. */
  27. /*! \file bdremoteng.h
  28. \brief Program name and version information.
  29. This file contains the program name end version information.
  30. */
  31. /*! \mainpage bdremote-ng
  32. *
  33. *
  34. * This projects attempts to write a working daemon that takes input
  35. * from a PS3 bluetooth remote and converts it into something that can
  36. * be given to LIRC.
  37. *
  38. */
  39. #ifndef BD_BDREMOTENG_H
  40. #define BD_BDREMOTENG_H
  41. /** Application name. */
  42. #define progname "bdremoted"
  43. /** Application version. */
  44. #define VERSION "0.5"
  45. /** Print usage information to stdout. */
  46. void usage(void);
  47. #endif /* BD_BDREMOTENG_H */
  48. /*@}*/