You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
520 B
19 lines
520 B
//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;
|
|
}
|