UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
NNEStatus.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "HAL/Platform.h"
6
7namespace UE::NNE
8{
9
10enum class EResultStatus : uint8
11{
12 Ok = 0,
13 Fail = 1
14};
15
16} // namespace UE::NNE
uint8_t uint8
Definition binka_ue_file_header.h:8
Definition NNE.cpp:12
EResultStatus
Definition NNEStatus.h:11