aboutsummaryrefslogblamecommitdiffstats
path: root/doc/examples/telephony-and-music/end-call.c
blob: edd97542024adbad2e096f45bad3f0fddd09e03f (plain) (tree)




























                                                                                       
#include <bus.h>
#include <stdio.h>
#include <unistd.h>
#include <stdint.h>

#define t(stmt)  if (stmt) goto fail



static char message[BUS_MEMORY_SIZE];



int main()
{
	bus_t bus;
	sprintf(message, "%ji unforce-pause", (intmax_t)getppid());
	/* Yes, PPID; in this example we pretend the shell is the telephony process. */
	t(bus_open(&bus, "/tmp/example-bus", BUS_WRONLY));
	t(bus_write(&bus, message));
	bus_close(&bus);
	return 0;

fail:
	perror("end-call");
	bus_close(&bus);
	return 1;
}