Difference between revisions of "PlugIn Development:GameEx MAME Update"

From Spesoft/GameEx Wiki
Jump to navigation Jump to search
Line 1: Line 1:
==<span style="font-size:125%; color:darkblue;">GameEx: MAME Update Overview</span>==
==<span style="font-size:125%; color:darkblue;">GameEx: MAME Update Overview</span>==
This enumeration sets the type of MAME List Update currently being processed for the [[PlugIn_Development:GameEx_MAME_List_Update_Function|MAME List Update Function]].
This enumeration sets the type of MAME List Update currently being processed for the [[PlugIn_Development:GameEx_MAME_List_Update_Function|MAME List Update]] function.
<br /><br />
<span style="color:darkred;"><b>PLEASE NOTE:</b> ''This enumeration is not part of the official GameEx plugin syntax, but can be easily added to the existing code before the MCE enulerations.''</span>


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

Revision as of 05:24, 27 April 2014

GameEx: MAME Update Overview

This enumeration sets the type of MAME List Update currently being processed for the MAME List Update function.

PLEASE NOTE: This enumeration is not part of the official GameEx plugin syntax, but can be easily added to the existing code before the MCE enulerations.

Variable Details

Below is a reference of the Variable Name and [Value] set in this enumeration:

Update_Start [0] : Specifies the start of the Update MAME List process.
Update_End [1] : Specifies the completeion of the Update MAME List process.


Code Examples

VB.NET syntax:

Public Enum MAME_Update
     Update_Start = 0
     Update_End = 1
End Enum

C# syntax:

public enum MAME_Update
{
     Update_Start = 0,
     Update_End = 1,
}