summaryrefslogtreecommitdiff
path: root/Ivy/IvyStdAfx.cpp
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:02:14 +0000
committerfcolin2007-02-01 13:02:14 +0000
commita3053cc5def34cd48b8fb0015ffb245b3e1d53dc (patch)
tree313968bc5e04b518862e71071c6deac66b9a0e3f /Ivy/IvyStdAfx.cpp
parentde9934763ae11ba972c1ec9ba408ac75255f1fae (diff)
downloadivy-cplusplus-a3053cc5def34cd48b8fb0015ffb245b3e1d53dc.zip
ivy-cplusplus-a3053cc5def34cd48b8fb0015ffb245b3e1d53dc.tar.gz
ivy-cplusplus-a3053cc5def34cd48b8fb0015ffb245b3e1d53dc.tar.bz2
ivy-cplusplus-a3053cc5def34cd48b8fb0015ffb245b3e1d53dc.tar.xz
Utilisateur : Fcolin Date : 16/06/00 Heure : 10:14 Créé (vss 1)
Diffstat (limited to 'Ivy/IvyStdAfx.cpp')
-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