Files
ben hoffman 6f744f20ad try to fix the Static Analysis warning from windows in BootstrapPackagedGame
#rb Joe.Kirchoff
#rnx

[CL 30574947 by ben hoffman in ue5-main branch]
2024-01-11 14:52:36 -05:00

27 lines
670 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
struct IUnknown;
// Disables a known issue in "winreg.h" when running static analysis with /analyze
// The warning is as follows:
//
// warning C6553: The annotation for function 'RegOpenKeyExW' on _Param_(3) does not apply to a value type.
//
// see https://developercommunity.visualstudio.com/t/warning-C6553:-The-annotation-for-functi/1676659 for more details
#pragma warning(push)
#pragma warning(disable : 6553)
#pragma pack(push, 8)
#include <windows.h>
#pragma pack(pop)
#pragma warning(pop)
#include <tchar.h>
#include <assert.h>
#include <stdio.h>
#include <shlwapi.h>
#include <winver.h>