13 lines
244 B
C
13 lines
244 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "BuildMacros.h"
|
|
|
|
#if AUTORTFM_PLATFORM_WINDOWS
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define NOMINMAX
|
|
#include <tchar.h>
|
|
#include <Windows.h>
|
|
#endif // AUTORTFM_PLATFORM_WINDOWS
|