diff options
| author | Grigoriy <[email protected]> | 2018-04-02 16:38:19 +0300 |
|---|---|---|
| committer | Grigoriy <[email protected]> | 2018-04-02 16:38:19 +0300 |
| commit | ef52f45369351ea62e4e8d2a66a3bdaaa19016ba (patch) | |
| tree | bfb1c7fe4393326a0370e8fda4bd8428a2020b4c /Source/NVIDIAGfeSDK/Public | |
| parent | Open group bugfix (diff) | |
| download | gfesdk-ue4plugin-ef52f45369351ea62e4e8d2a66a3bdaaa19016ba.tar.xz gfesdk-ue4plugin-ef52f45369351ea62e4e8d2a66a3bdaaa19016ba.zip | |
added more descriptive error codes, added 'unannounced' highlight type
Diffstat (limited to 'Source/NVIDIAGfeSDK/Public')
| -rw-r--r-- | Source/NVIDIAGfeSDK/Public/NVIDIAGfeSDKTypes.h | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/Source/NVIDIAGfeSDK/Public/NVIDIAGfeSDKTypes.h b/Source/NVIDIAGfeSDK/Public/NVIDIAGfeSDKTypes.h index 02e3b79..de5a1a0 100644 --- a/Source/NVIDIAGfeSDK/Public/NVIDIAGfeSDKTypes.h +++ b/Source/NVIDIAGfeSDK/Public/NVIDIAGfeSDKTypes.h @@ -12,7 +12,37 @@ enum class EGfeSDKReturnCode : uint8 ErrorGfeVersion = 4,
ErrorSdkVersion = 5,
ErrorModuleNotLoaded = 6,
- ErrorWrongTimeRangeSet = 7
+ ErrorWrongTimeRangeSet = 7,
+ ErrorGeneric = 8, + ErrorNotImplemented = 9, + ErrorInvalidParameter = 10, + ErrorNotSet = 11, + ErrorShadowplayIRDisabled = 12, + ErrorSDKInUse = 13, + ErrorGroupNotFound = 14, + ErrorFileNotFound = 15, + ErrorHighlightsSetupFailed = 16, + ErrorHighlightsNotConfigured = 17, + ErrorHighlightSaveFailed = 18, + ErrorUnexpectedException = 19, + ErrorNoHighlights = 20, + ErrorNoConnection = 21, + ErrorPermissionNotGranted = 22, + ErrorPermissionDenied = 23, + ErrorInvalidHandle = 24, + ErrorUnhandledException = 25, + ErrorOutOfMemory = 26, + ErrorLoadLibrary = 27, + ErrorLibraryCallFailed = 28, + ErrorIPCFailed = 29, + ErrorConnection = 30, + ErrorLibCallTimeout = 32, + ErrorApplicationLookupFailed = 33, + ErrorApplicationNotKnown = 34, + ErrorFeatureDisabled = 35, + ErrorAppNoOptimization = 36, + ErrorAppSettingsRead = 37, + ErrorAppSettingsWrite = 38
};
UENUM(BlueprintType)
@@ -42,7 +72,8 @@ enum class EGfeSDKHighlightType : uint8 Achievement = 0x02,
Incident = 0x04,
StateChange = 0x08,
- MAX = 0x10
+ Unannounced = 0x10,
+ MAX = 0x20
};
// This different from the version in sdk_types.h because
|