Difference between revisions of "PlugIn Development:GameEx Version Info"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
==<span style="font-size:125%; color:darkblue;">Variable Details</span>== | ==<span style="font-size:125%; color:darkblue;">Variable Details</span>== | ||
<p>Below is a reference of the variable <span style="color:darkred"><b>name</b></span> and <span style="color:blue"><b>[type]</b></span> available in this structure:</p | <p>Below is a reference of the variable <span style="color:darkred"><b>name</b></span> and <span style="color:blue"><b>[type]</b></span> available in this structure:</p> | ||
<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 /> | <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 /> | ||
Revision as of 23:14, 26 April 2014
GameEx: PlugIn Info Overview
When this structure is populated, the variable returns the current running version of GameEx.
Variable Details
Below is a reference of 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; }