libdiscord

libdiscord.git
git clone git://git.lenczewski.org/libdiscord.git
Log | Files | Refs | README | LICENSE

voice.c (762B)


      1 #include "internal.h"
      2 
      3 int
      4 voice_connect(struct conn *conn, struct io_uring *uring,
      5 	      char const *host, char const *port)
      6 {
      7 	return -1;
      8 }
      9 
     10 int
     11 voice_on_connect(struct conn *conn, struct io_uring *uring)
     12 {
     13 	return -1;
     14 }
     15 
     16 int
     17 voice_on_tls_handshake(struct conn *conn, struct io_uring *uring)
     18 {
     19 	return -1;
     20 }
     21 
     22 int
     23 voice_on_close(struct conn *conn, struct io_uring *uring)
     24 {
     25 	return -1;
     26 }
     27 
     28 int
     29 voice_recv(struct conn *conn, struct io_uring *uring)
     30 {
     31 	return -1;
     32 }
     33 
     34 int
     35 voice_on_recv(struct conn *conn, struct io_uring *uring,
     36 	      struct discord_event *ev)
     37 {
     38 	return -1;
     39 }
     40 
     41 int
     42 voice_send(struct conn *conn, struct io_uring *uring)
     43 {
     44 	return -1;
     45 }
     46 
     47 int
     48 voice_on_send(struct conn *conn, struct io_uring *uring,
     49 	      struct discord_event *ev)
     50 {
     51 	return -1;
     52 }