Windows2003-3790/sdktools/trace/csharptracepack/cppexamples/simpleexample/simpleexample.cpp
2020-09-30 16:53:55 +02:00

19 lines
520 B
C++

//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;
}