mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-14 20:00:01 +01:00
Get rid of deprecation warnings INCLUDES -> AM_CPPFLAGS. Closes #4. Move aclib, libOSC to thirdparty subfolder Fix typo in libvjmsg/Makefile.am
27 lines
592 B
C
27 lines
592 B
C
#ifndef _LIBOSC_H_INCLUDED
|
|
#define _LIBOSC_H_INCLUDED
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <libOSC/OSC-common.h>
|
|
#include <libOSC/OSC-timetag.h>
|
|
#include <libOSC/OSC-address-space.h>
|
|
#include <libOSC/OSC-dispatch.h>
|
|
#include <libOSC/OSC-receive.h>
|
|
#include <libOSC/OSC-callbacklist.h>
|
|
#include <libOSC/OSC-drop.h>
|
|
#include <libOSC/OSC-internal-messages.h>
|
|
#include <libOSC/OSC-pattern-match.h>
|
|
#include <libOSC/OSC-priority-queue.h>
|
|
#include <libOSC/OSC-string-help.h>
|
|
#include <libOSC/NetworkReturnAddress.h>
|
|
#include <libOSC/NetworkUDP.h>
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|