aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/dyn/dyn_pd.h
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/dyn/dyn_pd.h')
-rw-r--r--externals/grill/dyn/dyn_pd.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/externals/grill/dyn/dyn_pd.h b/externals/grill/dyn/dyn_pd.h
new file mode 100644
index 00000000..1b0ea161
--- /dev/null
+++ b/externals/grill/dyn/dyn_pd.h
@@ -0,0 +1,30 @@
+/*
+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 \ No newline at end of file