PlugIn Development:GameEx Version Info

From Spesoft/GameEx Wiki
Revision as of 23:12, 26 April 2014 by Adultery (talk | contribs) (Created page with "==<span style="font-size:125%; color:darkblue;">GameEx: PlugIn Info Overview</span>== When this structure is populated, the variable returns the current running version of Gam...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

GameEx: PlugIn Info Overview

When this structure is populated, the variable returns the current running version of GameEx.

Variable Details

Reference the variable name and [type] available in this structure,

GameExVersion [string] : The current running version of GameEx.

Code Examples

VB.NET syntax:

<StructLayout(LayoutKind.Sequential)> _
Public Structure GameExInfo
    Public GameExVersion As String
End Structure

C# syntax:

[ StructLayout( LayoutKind.Sequential )]
public struct GameExInfo
{
     public string GameExVersion;
}