Difference between revisions of "PlugIn Development:GameEx Version Info"
Jump to navigation
Jump to search
(→C#) |
(→VB.NET) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 10: | Line 10: | ||
<br /> | <br /> | ||
== <span class="plugin_headline_text"> | == <span class="plugin_headline_text">Structures</span> == | ||
=== <span class="plugin_text_fx">VB.NET</span> === | === <span class="plugin_text_fx">VB.NET</span> === | ||
Line 16: | Line 16: | ||
<StructLayout(LayoutKind.Sequential)> _ | <StructLayout(LayoutKind.Sequential)> _ | ||
Public Structure GameExInfo | Public Structure GameExInfo | ||
Public GameExVersion As String | |||
End Structure</pre> | End Structure</pre> | ||
Latest revision as of 20:18, 30 April 2014
When this structure is populated, the variable returns the current running version of GameEx.
Variables
Below is a reference of the variables available in this structure:
Variable | [Value] | Description |
---|---|---|
GameExVersion | [string] | The current running version of GameEx. |
Structures
VB.NET
<StructLayout(LayoutKind.Sequential)> _ Public Structure GameExInfo Public GameExVersion As String End Structure
C#
[ StructLayout( LayoutKind.Sequential )] public struct GameExInfo { public string GameExVersion; }