Added missing files
This commit is contained in:
Родитель
07e933c2a0
Коммит
a0f5210342
|
@ -26,3 +26,6 @@ Profile
|
|||
Release
|
||||
x64
|
||||
/wiki
|
||||
!Kits/Telemetry/ARM
|
||||
!Kits/Telemetry/Win32
|
||||
!Kits/Telemetry/x64
|
||||
|
|
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -0,0 +1,30 @@
|
|||
//--------------------------------------------------------------------------------------
|
||||
// Telemetry.h
|
||||
//
|
||||
// Advanced Technology Group (ATG)
|
||||
// Copyright (C) Microsoft Corporation. All rights reserved.
|
||||
//--------------------------------------------------------------------------------------
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef ATG_TELEMETRY_EXPORTS
|
||||
#define ATG_TELEMETRY_API __declspec(dllexport)
|
||||
#else
|
||||
#define ATG_TELEMETRY_API __declspec(dllimport)
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
namespace ATG
|
||||
{
|
||||
// Must register the event provider before writing any events
|
||||
ATG_TELEMETRY_API uint32_t EventRegisterATGSampleTelemetry();
|
||||
ATG_TELEMETRY_API uint32_t EventUnregisterATGSampleTelemetry();
|
||||
|
||||
// Returns true if you've called EventRegisterATGSampleTelemetry()
|
||||
ATG_TELEMETRY_API bool EventEnabledSampleLoaded();
|
||||
|
||||
// Log the SampleLoaded event
|
||||
// requires that you call EventRegisterATGSampleTelemetry() first
|
||||
ATG_TELEMETRY_API uint32_t EventWriteSampleLoaded(const wchar_t* exeName);
|
||||
}
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
Загрузка…
Ссылка в новой задаче