Difference between revisions of "PlugIn Development:GameEx MAME Update"
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
=== <span style="color:#003300;">VB.NET</span> === | === <span style="color:#003300;">VB.NET</span> === | ||
---- | |||
<pre style="font-family:'Lucida Console', Monaco, monospace; border-color:#003300; background-color:#E0EEE0; border-style:dashed;"> | <pre style="font-family:'Lucida Console', Monaco, monospace; border-color:#003300; background-color:#E0EEE0; border-style:dashed;"> | ||
Public Enum MAME_Update | Public Enum MAME_Update | ||
Line 17: | Line 18: | ||
=== <span style="color:#003300;">C#</span> === | === <span style="color:#003300;">C#</span> === | ||
---- | |||
<pre style="font-family:'Lucida Console', Monaco, monospace; border-color:#003300; background-color:#E0EEE0; border-style:dashed;"> | <pre style="font-family:'Lucida Console', Monaco, monospace; border-color:#003300; background-color:#E0EEE0; border-style:dashed;"> | ||
public enum MAME_Update | public enum MAME_Update |
Revision as of 06:39, 27 April 2014
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 enumerations.
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.
Update_End [1] : Specifies the completeion of the Update MAME List process.
Code Examples
VB.NET
Public Enum MAME_Update Update_Start = 0 Update_End = 1 End Enum
C#
public enum MAME_Update { Update_Start = 0, Update_End = 1, }