mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
initial commit
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@3 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
b1c00dcd0a
commit
9cb0b933e2
47 changed files with 3425 additions and 0 deletions
17
src/protocol-simple.h
Normal file
17
src/protocol-simple.h
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#ifndef fooprotocolsimplehfoo
|
||||
#define fooprotocolsimplehfoo
|
||||
|
||||
#include "socket-server.h"
|
||||
|
||||
struct protocol_simple;
|
||||
|
||||
enum protocol_simple_mode {
|
||||
PROTOCOL_SIMPLE_RECORD = 1,
|
||||
PROTOCOL_SIMPLE_PLAYBACK = 2,
|
||||
PROTOCOL_SIMPLE_DUPLEX = 3
|
||||
};
|
||||
|
||||
struct protocol_simple* protocol_simple_new(struct core *core, struct socket_server *server, enum protocol_simple_mode mode);
|
||||
void protocol_simple_free(struct protocol_simple *n);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue