Difference between revisions of "PlugIn Development:GameEx Version Info"
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
==<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:2px; padding-left:10px; padding-right:10px;"><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:2px; padding-left:10px; padding-right:10px; padding-top:10px; padding-bottom:10px;"><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:56, 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; }