pipewire/doc/examples/tutorial1.c

20 lines
326 B
C
Raw Normal View History

2021-10-09 21:09:32 +00:00
/*
[title]
\ref page_tutorial1
[title]
*/
/* [code] */
#include <pipewire/pipewire.h>
int main(int argc, char *argv[])
{
pw_init(&argc, &argv);
fprintf(stdout, "Compiled with libpipewire %s\n"
2023-06-08 13:31:18 +00:00
"Linked with libpipewire %s\n",
pw_get_headers_version(),
pw_get_library_version());
2021-10-09 21:09:32 +00:00
return 0;
}
/* [code] */