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

From Spesoft/GameEx Wiki
Jump to navigation Jump to search
Line 6: Line 6:
<br />
<br />


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


=== <span class="text_fx">VB.NET</span> ===
=== <span class="text_fx">VB.NET</span> ===

Revision as of 10:22, 27 April 2014

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 [Data Type] available in this structure:

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


Code Examples

VB.NET


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

C#


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