From 6df23c03794485b61c0a534a0f86c039add42e0b Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:02:14 +0000 Subject: Utilisateur : Fcolin Date : 16/06/00 Heure : 10:14 Créé (vss 1) --- Bus/Ivy/IvyStdAfx.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Bus/Ivy/IvyStdAfx.cpp (limited to 'Bus/Ivy/IvyStdAfx.cpp') diff --git a/Bus/Ivy/IvyStdAfx.cpp b/Bus/Ivy/IvyStdAfx.cpp new file mode 100644 index 0000000..5feeaf4 --- /dev/null +++ b/Bus/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 + +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 -- cgit v1.1