source: roaraudio/include/libroar/libroar.h @ 4497:d53e72ee4a67

Last change on this file since 4497:d53e72ee4a67 was 4497:d53e72ee4a67, checked in by phi, 14 years ago

added dummy files for caps.h

File size: 4.3 KB
RevLine 
[0]1//libroar.h:
2
[690]3/*
[3110]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008, 2009, 2010
[690]5 *
6 *  This file is part of libroar a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  libroar is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
[3517]21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
[690]23 *
24 *  NOTE for everyone want's to change something and send patches:
25 *  read README and HACKING! There a addition information on
26 *  the license of this document you need to read before you send
27 *  any patches.
28 *
29 *  NOTE for uses of non-GPL (LGPL,...) software using libesd, libartsc
30 *  or libpulse*:
31 *  The libs libroaresd, libroararts and libroarpulse link this lib
32 *  and are therefore GPL. Because of this it may be illigal to use
33 *  them with any software that uses libesd, libartsc or libpulse*.
34 */
35
[0]36#ifndef _LIBROAR_H_
37#define _LIBROAR_H_
38
[4299]39//#define ROAR_DBG_PREFIX  "libroar"
[0]40
[474]41#include <roaraudio.h>
42
[1351]43#include <stdarg.h>
44
[1386]45#ifdef ROAR_HAVE_WAIT
[1254]46#include <sys/wait.h>
[1386]47#endif
[1254]48
[1425]49#ifdef ROAR_HAVE_H_FCNTL
[0]50#include <fcntl.h>
[1425]51#endif
[1374]52
[3056]53#ifdef ROAR_HAVE_H_SIGNAL
[1418]54#include <signal.h>
55#endif
56
[3611]57#ifdef ROAR_HAVE_SYSLOG
58#include <syslog.h>
59#endif
60
[1374]61#ifdef ROAR_HAVE_BSDSOCKETS
62
[1075]63#ifndef ROAR_TARGET_WIN32
[322]64#include <sys/socket.h>
[1374]65#ifdef ROAR_HAVE_IPV4
[726]66#include <netinet/in_systm.h>
[322]67#include <netinet/in.h>
68#include <netinet/ip.h>
[1374]69#endif
[902]70#include <sys/uio.h>
[3805]71
72#ifdef ROAR_HAVE_UNIX
73#include <sys/un.h>
[1075]74#endif
[3805]75#endif
76
[501]77#ifdef ROAR_HAVE_LIBDNET
78#include <netdnet/dn.h>
79#include <netdnet/dnetdb.h>
80#endif
[3805]81
[529]82#ifdef ROAR_HAVE_IPX
[528]83#include <netipx/ipx.h>
84#endif
[0]85
[1374]86#endif /* ROAR_HAVE_BSDSOCKETS */
87
[1322]88#ifdef ROAR_HAVE_LIBSSL
89#include <openssl/bio.h>
90#include <openssl/evp.h>
91#endif
92
[1996]93#ifdef ROAR_HAVE_LIBSLP
94#include <slp.h>
[3203]95#ifdef ROAR_HAVE_H_SYS_TIME
96#include <sys/time.h>
97#endif
98#ifdef ROAR_HAVE_H_TIME
99#include <time.h>
100#endif
[1996]101#endif
102
[3297]103#if defined(ROAR_HAVE_LIBDL)
104#include <dlfcn.h>
105#endif
106
[3371]107#ifdef ROAR_HAVE_LIBX11
108#include <X11/Xlib.h>
109#include <X11/Xatom.h>
110#endif
111
[797]112#include "error.h"
[2477]113#include "config.h"
[3376]114#include "keyval.h"
[3958]115#include "env.h"
[3297]116#include "roardl.h"
[2648]117#include "debug.h"
[2976]118#include "memmgr.h"
[1280]119#include "stack.h"
[1297]120#include "buffer.h"
[4454]121#include "crypto.h"
[4446]122#include "random.h"
123#include "hash.h"
[4457]124#include "hash_tiger.h"
[2812]125#include "nnode.h"
[2058]126#include "vio_ctl.h"
[588]127#include "vio.h"
[3969]128#include "vio_buffer.h"
[3994]129#include "vio_buffer_store.h"
[1255]130#include "vio_cmd.h"
[1274]131#include "vio_ops.h"
[2060]132#include "vio_string.h"
[1274]133#include "vio_magic.h"
[1347]134#include "vio_bio.h"
[2059]135#include "vio_stdio.h"
[1347]136#include "vio_stack.h"
[2981]137#include "vio_jumbo.h"
[1300]138#include "vio_pipe.h"
[1331]139#include "vio_socket.h"
[3315]140#include "vio_winsock.h"
[1347]141#include "vio_proto.h"
[3272]142#include "vio_rtp.h"
[1506]143#include "vio_select.h"
[1326]144// dstr needs to have access to all other VIOs, so it must be included last
[1321]145#include "vio_dstr.h"
[3109]146#include "vio_tantalos.h"
[2812]147#include "client.h"
[0]148#include "basic.h"
[4426]149#include "serverinfo.h"
[0]150#include "stream.h"
151#include "simple.h"
[808]152#include "cdrom.h"
[4483]153#include "authfile.h"
[0]154#include "auth.h"
155#include "socket.h"
156#include "ctl.h"
[4497]157#include "caps.h"
[94]158#include "meta.h"
[320]159#include "file.h"
[347]160#include "acl.h"
[1232]161#include "pinentry.h"
[1288]162#include "sshaskpass.h"
[4462]163#include "passwordapi.h"
[2000]164#include "roarslp.h"
[3632]165#include "display.h"
[3370]166#include "roarx11.h"
[3567]167#include "beep.h"
[4263]168#include "ltm.h"
[4172]169#include "vs.h"
[4300]170#include "enumdev.h"
[4302]171#include "notify.h"
[4314]172#include "notify_proxy.h"
[4341]173#include "asyncctl.h"
[0]174
[2067]175// some basic macros:
176#define ROAR_MAX2(a,b) ((a) > (b) ? (a) : (b))
177#define ROAR_MIN2(a,b) ((a) < (b) ? (a) : (b))
178
179#define ROAR_MAX3(a,b,c) ROAR_MAX2(ROAR_MAX2(a,b),c)
180#define ROAR_MIN3(a,b,c) ROAR_MIN2(ROAR_MIN2(a,b),c)
181
182#define ROAR_MAX4(a,b,c,d) ROAR_MAX2(ROAR_MAX2(a,b),ROAR_MAX2(c,d))
183#define ROAR_MIN4(a,b,c,d) ROAR_MIN2(ROAR_MIN2(a,b),ROAR_MIN2(c,d))
184
185#define ROAR_MAX ROAR_MAX2
186#define ROAR_MIN ROAR_MIN2
187
[0]188#endif
189
190//ll
Note: See TracBrowser for help on using the repository browser.