Difference between revisions of "PlugIn Development:GameEx PlugIn Type"

From Spesoft/GameEx Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
This enumeration sets the type of plugin that you are developing for the [[PlugIn_Development:GameEx_PlugIn Info|PlugIn Info]] structure.<br /><br />
This enumeration sets the type of plugin that you are developing for the [[PlugIn_Development:GameEx_PlugIn Info|PlugIn Info]] structure.<br /><br />
<div class="note_block_red"><b>PLEASE NOTE:</b> ''Only <u>PlugIn_Type.Emulator</u> is supported at this time.''</div>
<div class="note_block_red"><b>PLEASE NOTE:</b> ''Only <span class="plugin_return_text">PlugIn_Type.Emulator</span> is supported at this time.''</div>
<br />
<br />
== <span class="plugin_headline_text">Variables</span> ==
== <span class="plugin_headline_text">Variables</span> ==
<p>Below is a reference of the <span style="color:darkred"><b>Variable Name</b></span> and <span style="color:blue"><b>[Value]</b></span> set in this enumeration:</p>
<p>Below is a reference of the variables set in this enumeration:</p>
<div class="code_variables"><span style="color:darkred"><b>Emulator</b></span> <span style="color:blue"><b>[0]</b></span> : Specifies an internal plugin type.<br /><span style="color:darkred"><b>Stand_Alone</b></span> <span style="color:blue"><b>[1]</b></span> : Specifies an external plugin type.   <span style="color:darkred"><b>&bull;NOTE&bull;</b> This type of plugin is not currently supported!</span></div>
<div class="code_variables">
<table>
<th><span style="color:darkred">Variable</span></th><th style="text-align:center;"><span style="color:blue;">[Value]</span></th><th>Description</th>
<tr><td><span style="color:darkred">Emulator</span></td><td style="text-align:center;"><span style="color:blue">[0]</span></td><td>Specifies an internal PlugIn type.</td></tr>
<tr><td  valign="top"><span style="color:darkred">Stand_Alone</span></td><td style="text-align:center;"  valign="top"><span style="color:blue">[1]</span></td><td>Specifies an external PlugIn type.<br /><span style="color:darkred"><b>&bull;NOTE&bull;</b> This type of plugin is not currently supported!</span></td></tr>
</table>
</div>
<br />
<br />
== <span class="plugin_headline_text">Code Examples</span> ==
 
== <span class="plugin_headline_text">Enumerations</span> ==


=== <span class="plugin_text_fx">VB.NET</span> ===
=== <span class="plugin_text_fx">VB.NET</span> ===
----
<pre class="code_es_vb">
<pre class="code_block_enum">
Public Enum Plugin_Type
Public Enum Plugin_Type
     Emulator = 0
     Emulator = 0
Line 17: Line 23:


=== <span class="plugin_text_fx">C#</span> ===
=== <span class="plugin_text_fx">C#</span> ===
----
<pre class="code_es_cs">
<pre class="code_block_enum">
public enum Plugin_Type : int
public enum Plugin_Type : int
{
{

Latest revision as of 06:19, 28 April 2014

This enumeration sets the type of plugin that you are developing for the PlugIn Info structure.

PLEASE NOTE: Only PlugIn_Type.Emulator is supported at this time.


Variables

Below is a reference of the variables set in this enumeration:

Variable[Value]Description
Emulator[0]Specifies an internal PlugIn type.
Stand_Alone[1]Specifies an external PlugIn type.
•NOTE• This type of plugin is not currently supported!


Enumerations

VB.NET

Public Enum Plugin_Type
     Emulator = 0
     Stand_Alone = 1
End Enum

C#

public enum Plugin_Type : int
{
     Emulator = 0,
     Stand_Alone = 1,
}