GetRevisionW

Returns the revision number. The timeStamp is generated by the SVN system used during development.

Syntax

public const string enginedll = @"engine.dll";

[DllImport(enginedll, EntryPoint = "GetRevisionW")]
public static extern Int64 GetRevisionW(out IntPtr timeStamp);

public static Int64 GetRevisionW()
        {
            IntPtr timeStamp = IntPtr.Zero;
            return GetRevisionW(out timeStamp);
        }    

Property timeStamp

Size: 32 bit / 4 byte (reference)
A reference to the fixed wchar_t array (Unicode) representing the time stamp that is representing the date and time of release (fixed to the revision number). This time stamp is available since revision numbers are introduced late 2016. Earlier versions are available but have no API call to retrieve their revision or date / time of release.