Files
UnrealEngineUWP/Engine/Source/Developer/TraceAnalysis/Private/Common.h
Stefan Boberg 8607ecb30d Copying //UE4/Dev-Core to Dev-Main (//UE4/Dev-Main)
#rb none

[CL 6815521 by Stefan Boberg in Main branch]
2019-06-03 15:32:00 -04:00

17 lines
422 B
C

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#if 0
#if PLATFORM_WINDOWS
# include "Windows/AllowWindowsPlatformTypes.h"
# define _WINSOCK_DEPRECATED_NO_WARNINGS
# include <winsock2.h>
# include <ws2tcpip.h>
# include "Windows/HideWindowsPlatformTypes.h"
# pragma comment(lib, "ws2_32.lib")
#endif
#define TRACE_LOG(Format, ...) UE_LOG(LogCore, Log, TEXT(Format), __VA_ARGS__)
#endif // 0