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

From Spesoft/GameEx Wiki
Jump to navigation Jump to search
(Created page with "==<span style="font-size:125%; color:darkblue;">GameEx: PlugIn Type Overview</span>== This enumeration sets the type of plugin that you are developing for the [http://www.game...")
 
Line 1: Line 1:
==<span style="font-size:125%; color:darkblue;">GameEx: PlugIn Type Overview</span>==
==<span style="font-size:125%; color:darkblue;">GameEx: PlugIn Type Overview</span>==
This enumeration sets the type of plugin that you are developing for the [http://www.gameex.info/wiki/index.php/PlugIn_Development:GameEx_PlugIn_Info PlugIn Type] constants.<br /><br /><span style="color:red;"><b>PLEASE NOTE:</b> ''Only <b><u>PlugIn_Type.Emulator</u></b> is supported at this time.''</span>
This enumeration sets the type of plugin that you are developing for the [[PlugIn_Development:GameEx_PlugIn Info|PlugIn Info]] structure.<br /><br /><span style="color:red;"><b>PLEASE NOTE:</b> ''Only <b><u>PlugIn_Type.Emulator</u></b> is supported at this time.''</span>


==<span style="font-size:125%; color:darkblue;">Variable Details</span>==
==<span style="font-size:125%; color:darkblue;">Variable Details</span>==

Revision as of 00:28, 27 April 2014

GameEx: PlugIn Type Overview

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.

Variable Details

Below is a reference of the Variable Name and [Value] available in this structure:

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


Code Examples

VB.NET syntax:

Public Enum Plugin_Type
     Emulator = 0
     Stand_Alone = 1
End Enum

C# syntax:

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