Files
UnrealEngineUWP/Engine/Source/Editor/UnrealEd/Private/Dialogs/DialogsPrivate.h
JeanMichel Dignard dc2d35695f Copyright fixes
#rb none
#rnx

[CL 10910710 by JeanMichel Dignard in Dev-Tools-Staging branch]
2020-01-08 17:11:23 -05:00

17 lines
691 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
/**
* Opens a modal/blocking message box dialog (with an additional 'copy message text' button), and returns the result immediately
* For internal use only, use FMessageDialog::Open() instead.
*
* @param InMessageType The type of message box to display (e.g. 'ok', or 'yes'/'no' etc.)
* @param InMessage The message to display in the message box
* @param InTitle The title to display for the message box
* @return Returns the result of the user input
*/
EAppReturnType::Type OpenMessageDialog_Internal(EAppMsgType::Type InMessageType, const FText& InMessage, const FText& InTitle);