2006-02-16 23:11:28 +00:00
|
|
|
#ifndef fooversionhfoo /*-*-C-*-*/
|
|
|
|
|
#define fooversionhfoo
|
2004-08-18 01:00:18 +00:00
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-02-13 15:35:19 +00:00
|
|
|
|
|
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2004-08-18 01:00:18 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-08-18 01:00:18 +00:00
|
|
|
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.
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-08-18 01:00:18 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2006-02-16 22:43:59 +00:00
|
|
|
/* WARNING: Make sure to edit the real source file version.h.in! */
|
2004-09-29 19:13:55 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/cdecl.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2004-08-18 01:00:18 +00:00
|
|
|
/** \file
|
|
|
|
|
* Define header version */
|
|
|
|
|
|
2004-10-24 00:48:02 +00:00
|
|
|
PA_C_DECL_BEGIN
|
|
|
|
|
|
2004-08-18 01:00:18 +00:00
|
|
|
/** Return the version of the header files. Keep in mind that this is
|
|
|
|
|
a macro and not a function, so it is impossible to get the pointer of
|
|
|
|
|
it. */
|
|
|
|
|
#define pa_get_headers_version() ("@PACKAGE_VERSION@")
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
/** Return the version of the library the current application is
|
|
|
|
|
* linked to. */
|
2004-09-29 19:13:55 +00:00
|
|
|
const char* pa_get_library_version(void);
|
|
|
|
|
|
2006-06-19 22:11:49 +00:00
|
|
|
/** The current API version. Version 6 relates to Polypaudio
|
2004-09-29 19:13:55 +00:00
|
|
|
* 0.6. Prior versions (i.e. Polypaudio 0.5.1 and older) have
|
|
|
|
|
* PA_API_VERSION undefined. */
|
|
|
|
|
#define PA_API_VERSION @PA_API_VERSION@
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
/** The current protocol version. Version 8 relates to Polypaudio
|
|
|
|
|
* 0.8/PulseAudio 0.9. */
|
2006-03-02 21:56:15 +00:00
|
|
|
#define PA_PROTOCOL_VERSION @PA_PROTOCOL_VERSION@
|
|
|
|
|
|
2004-10-24 00:48:02 +00:00
|
|
|
PA_C_DECL_END
|
|
|
|
|
|
2004-08-18 01:00:18 +00:00
|
|
|
#endif
|