PlugIn Development:GameEx MAME Update

From Spesoft/GameEx Wiki
Revision as of 05:13, 27 April 2014 by Adultery (talk | contribs) (Created page with "==<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 Pl...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

GameEx: MAME Update Overview

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

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.
Stand_Alone [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,
}