flext  0.6.0
flcwmax-x-thr.h
Go to the documentation of this file.
1 /*
2 
3 flext - C++ layer for Max/MSP and pd (pure data) externals
4 
5 Copyright (c) 2001-2003 Thomas Grill (xovo@gmx.net)
6 For information on usage and redistribution, and for a DISCLAIMER OF ALL
7 WARRANTIES, see the file, "license.txt," in this distribution.
8 
9 */
10 
15 #ifndef _FLEXT_CW_MAX_X_THR_H
16 #define _FLEXT_CW_MAX_X_THR_H
17 
18 #define FLEXT_THREADS
19 
20 /*
21  old CodeWarrior version (<= 6) don't have sigset_t defined which
22  is needed for pthreads
23 */
24 #if defined(__MWERKS__) && (__MWERKS__ == 1) // read __MWERKS__ numbering starts with CW7
25  typedef unsigned int sigset_t;
26  #define _CW_NOPRECOMP // no precompiled headers
27 #endif
28 
29 #include "flcwmax-x.h"
30 
31 #endif
flcwmax-x.h
Prefix file for CodeWarrior projects - OS X version.