From 0ed7a8b68dd73e2b0473b8127aeca99f3bac9061 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 1 Apr 2009 21:13:09 +0000 Subject: cleaned up grill externals - replaced with svn:externals to svn.grrrr.org/ext/trunk/ svn path=/trunk/; revision=10951 --- externals/grill/flext/source/flext.h | 68 ------------------------------------ 1 file changed, 68 deletions(-) delete mode 100644 externals/grill/flext/source/flext.h (limited to 'externals/grill/flext/source/flext.h') diff --git a/externals/grill/flext/source/flext.h b/externals/grill/flext/source/flext.h deleted file mode 100644 index 71a35ea6..00000000 --- a/externals/grill/flext/source/flext.h +++ /dev/null @@ -1,68 +0,0 @@ -/* - -flext - C++ layer for Max/MSP and pd (pure data) externals - -Copyright (c) 2001-2006 Thomas Grill (gr@grrrr.org) -For information on usage and redistribution, and for a DISCLAIMER OF ALL -WARRANTIES, see the file, "license.txt," in this distribution. - -*/ - -/*! \file flext.h - \brief This is the main flext include file. - - The basic definitions are set here and the necessary header files are included -*/ - -#ifndef __FLEXT_H -#define __FLEXT_H - - -/*! \defgroup FLEXT_GLOBAL Flext global definitions - @{ -*/ - -//! \brief flext version number -#define FLEXT_VERSION 501 - -//! \brief flext version string -#define FLEXT_VERSTR "0.5.1pre" - -//! @} - - -// determine System/OS/CPU -#include "flprefix.h" - -// include headers necessary for multi-threading -#ifdef FLEXT_THREADS - #if FLEXT_THREADS == FLEXT_THR_POSIX - extern "C" { - #include - #include - } - #elif FLEXT_THREADS == FLEXT_THR_MP - #include - #elif FLEXT_THREADS == FLEXT_THR_WIN32 - #if defined(_WIN32_WINNT) && _WIN32_WINNT >= 0x500 - #include - #include - #else - #error "Win32 threading model only supported for Win2000/XP or newer" - #endif - #else - #error "Thread model not supported" - #endif -#endif - - -// include all the flext interface definitions -#include "fldefs.h" - -// include the basic flext object classes -#include "flclass.h" - -// include the flext dsp class -#include "fldsp.h" - -#endif // FLEXT_H -- cgit v1.2.1