aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/dyn/dyn_pd.h
blob: 3832fe042b6f87229f67e54307aa685c4d86af09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* 
dyn - dynamical object management

Copyright (c)2003-2004 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.  
*/

#ifndef __DYN_PD_H
#define __DYN_PD_H

#include "dyn.h"

#ifdef _MSC_VER
#pragma warning(disable: 4091 4244)
#endif
extern "C" {
#include "m_imp.h"
#include "g_canvas.h"
}

#include <assert.h>
#ifdef _MSC_VER
#include <crtdbg.h>
#define ASSERT _ASSERTE
#else
#define ASSERT assert
#endif

#endif