diff options
author | fcolin | 2007-02-01 13:02:14 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:02:14 +0000 |
commit | a3053cc5def34cd48b8fb0015ffb245b3e1d53dc (patch) | |
tree | 313968bc5e04b518862e71071c6deac66b9a0e3f /Ivy | |
parent | de9934763ae11ba972c1ec9ba408ac75255f1fae (diff) | |
download | ivy-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')
-rw-r--r-- | Ivy/IvyStdAfx.cpp | 18 |
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 |