Difference between revisions of "PlugIn Development:GameEx MAME Update"
Jump to navigation
Jump to search
(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...") |
|||
Line 4: | Line 4: | ||
==<span style="font-size:125%; color:darkblue;">Variable Details</span>== | ==<span style="font-size:125%; color:darkblue;">Variable Details</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 <span style="color:darkred"><b>Variable Name</b></span> and <span style="color:blue"><b>[Value]</b></span> set in this enumeration:</p> | ||
<div style="border-style:solid; border-color:darkred; background-color:#FFCCCC; border-width:2px; padding-left:5px; padding-right:5px; padding-top:5px; padding-bottom:5px;"><span style="color:darkred"><b> | <div style="border-style:solid; border-color:darkred; background-color:#FFCCCC; border-width:2px; padding-left:5px; padding-right:5px; padding-top:5px; padding-bottom:5px;"><span style="color:darkred"><b>Update_Start</b></span> <span style="color:blue"><b>[0]</b></span> : Specifies the start of the Update MAME List process.<br /><span style="color:darkred"><b>Update_End</b></span> <span style="color:blue"><b>[1]</b></span> : Specifies the completeion of the Update MAME List process.</div><br /> | ||
==<span style="font-size:125%; color:darkblue;">Code Examples</span>== | ==<span style="font-size:125%; color:darkblue;">Code Examples</span>== |
Revision as of 05:13, 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.
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 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, }