Skip to content
Snippets Groups Projects
Commit 6198bf62 authored by Albert Gräf's avatar Albert Gräf Committed by Albert Gräf
Browse files

mingw64 fixes: lyonpotpourri (m_pd.h).

parent 9e0da7d7
Branches fixes-for-catalina
No related tags found
No related merge requests found
...@@ -81,8 +81,12 @@ typedef unsigned __int64 uint64_t; ...@@ -81,8 +81,12 @@ typedef unsigned __int64 uint64_t;
/* signed and unsigned integer types the size of a pointer: */ /* signed and unsigned integer types the size of a pointer: */
#if !defined(PD_LONGINTTYPE) #if !defined(PD_LONGINTTYPE)
#if defined(_WIN32) && defined(_WIN64)
#define PD_LONGINTTYPE long long
#else
#define PD_LONGINTTYPE long #define PD_LONGINTTYPE long
#endif #endif
#endif
#if !defined(PD_FLOATSIZE) #if !defined(PD_FLOATSIZE)
/* normally, our floats (t_float, t_sample,...) are 32bit */ /* normally, our floats (t_float, t_sample,...) are 32bit */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment