Windows2003-3790/sdktools/trace/csharptracepack/cppexamples/simpleexample/simpleexample.cpp

19 lines
520 B
C++
Raw Normal View History

2001-01-01 00:00:00 +01:00
//A Sample program to demonstrate use of managed software tracing
#include "stdafx.h"
#using <mscorlib.dll>
#include <tchar.h>
#using <TraceEvent.dll>
using namespace System;
using namespace Microsoft::Win32::Diagnostics;
int _tmain(void)
{
Guid g("{8C8AC55E-834E-49cb-B993-75B69FBF6D97}");
TraceProvider* MyProvider = new TraceProvider (S"SimpleExample App",g);
MyProvider->TraceMessage(1,S"Composite formatting of a string: Hello |{0,30}|",S"World");
return 0;
}