common/backtrace.h: disable for WIN32

This also catches mingw32 which is probably fine, but at least it fixes
the build on visual studio.
This commit is contained in:
Alon Levy 2011-07-20 16:19:51 +03:00 committed by Arnon Gilboa
parent 048b003468
commit 8b4ff62ddb

View File

@ -19,6 +19,10 @@
#ifndef BACKTRACE_H
#define BACKTRACE_H
#ifdef WIN32
#define spice_backtrace()
#else
void spice_backtrace(void);
#endif
#endif // BACKTRACE_H