Difference between revisions of "PlugIn Development:GameEx Version Info"

From Spesoft/GameEx Wiki
Jump to navigation Jump to search
(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...")
 
Line 4: Line 4:
==<span style="font-size:125%; color:darkblue;">Variable Details</span>==
==<span style="font-size:125%; color:darkblue;">Variable Details</span>==
Reference the variable <span style="color:darkred"><b>name</b></span> and <span style="color:blue"><b>[type]</b></span> available in this structure,
Reference the variable <span style="color:darkred"><b>name</b></span> and <span style="color:blue"><b>[type]</b></span> available in this structure,
<div style="border-style:solid; border-color:darkred; background-color:#FFCCCC; border-width:1px; padding:5px 5px;"><span style="color:darkred"><b>GameExVersion</b></span> <span style="color:blue"><b>[string]</b></span> : The current running version of GameEx.</div>
<div style="border-style:solid; border-color:darkred; background-color:#FFCCCC; border-width:1px; padding:5px 5px;"><span style="color:darkred"><b>GameExVersion</b></span> <span style="color:blue"><b>[string]</b></span> : The current running version of GameEx.</div><br />


==<span style="font-size:125%; color:darkblue;">Code Examples</span>==
==<span style="font-size:125%; color:darkblue;">Code Examples</span>==

Revision as of 23:12, 26 April 2014

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;
}