API reference
API reference
Select your platform
No SDKs available
No versions available

FOvrApplicationVersion Struct

Represents the version information for an application. The information includes the date of latest release, the size of the latest release and the application name and version code of currently installed version and the latest release. You can retrieve it with UOvrRequestsBlueprintLibrary::Application_GetVersion().

Constructors

FOvrApplicationVersion ()
This is the default constructor for the struct, which initializes the ::ovrApplicationVersionHandle and TOvrMessageHandlePtr to their default values.
Signature
FOvrApplicationVersion::FOvrApplicationVersion()
FOvrApplicationVersion ( OvrHandle , MessageHandlePtr )
Copying values from an OVR handle to the array, and the originating message to prevent the handle from being freed.
Signature
FOvrApplicationVersion::FOvrApplicationVersion(ovrApplicationVersionHandle OvrHandle, TOvrMessageHandlePtr MessageHandlePtr)
Parameters
OvrHandle: ovrApplicationVersionHandle
MessageHandlePtr: TOvrMessageHandlePtr

Fields

CurrentCode : int32
The version code number for the version of the application that is currently installed on the device.
Signature
int32 FOvrApplicationVersion::CurrentCode
CurrentName : FString
The version name string for the version of the application that is currently installed on the device.
Signature
FString FOvrApplicationVersion::CurrentName
LatestCode : int32
Version code number of the latest update of the application. This may or may not be currently installed on the device.
Signature
int32 FOvrApplicationVersion::LatestCode
LatestName : FString
Version name string of the latest update of the application. This may or may not be currently installed on the device.
Signature
FString FOvrApplicationVersion::LatestName
ReleaseDate : int64
Seconds since epoch when the latest application update was released. You need to convert this date to a human readable format before displaying it to the application users.
Signature
int64 FOvrApplicationVersion::ReleaseDate
Size : FString
Size of the latest application update in bytes.
Signature
FString FOvrApplicationVersion::Size

Member Functions

Clear ()
Setting all values to their defaults, effectively clearing the struct.
Signature
void FOvrApplicationVersion::Clear()
Returns
void
Update ( OvrHandle , MessageHandlePtr )
Updating values from an OVR handle to the array, and the originating message to prevent the handle from being freed.
Signature
void FOvrApplicationVersion::Update(ovrApplicationVersionHandle OvrHandle, TOvrMessageHandlePtr MessageHandlePtr)
Parameters
OvrHandle: ovrApplicationVersionHandle
MessageHandlePtr: TOvrMessageHandlePtr
Returns
void