summaryrefslogtreecommitdiff
path: root/Ivy
diff options
context:
space:
mode:
Diffstat (limited to 'Ivy')
-rw-r--r--Ivy/IvyStdAfx.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/Ivy/IvyStdAfx.cpp b/Ivy/IvyStdAfx.cpp
new file mode 100644
index 0000000..5feeaf4
--- /dev/null
+++ b/Ivy/IvyStdAfx.cpp
@@ -0,0 +1,18 @@
+// stdafx.cpp : source file that includes just the standard includes
+// libIvy.pch will be the pre-compiled header
+// stdafx.obj will contain the pre-compiled type information
+
+#include "stdafx.h"
+
+#include <windows.h>
+
+void DebugTrace ( const char *fmt , ... )
+{
+ char buffer[4096];
+ va_list args;
+
+ va_start( args, fmt );
+ vsprintf( buffer, fmt, args );
+ va_end( args );
+ OutputDebugString( buffer );
+} \ No newline at end of file