Difference between revisions of "PlugIn Development:GameEx MAME Update"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
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 /> | <br /><br /> | ||
<span | <span class="note_block_red"><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 enumerations.''</span> | ||
<br /> | <br /> | ||
== <span | == <span class="plugin_headline_text">Variables</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 | <div class="code_variables"><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 /> | <br /> | ||
==<span | ==<span class="plugin_headline_text">Code Examples</span>== | ||
=== <span | === <span class="plugin_text_fx">VB.NET</span> === | ||
---- | ---- | ||
<pre | <pre class="code_block_enum"> | ||
Public Enum MAME_Update | Public Enum MAME_Update | ||
Update_Start = 0 | Update_Start = 0 | ||
Line 17: | Line 17: | ||
End Enum</pre> | End Enum</pre> | ||
=== <span | === <span class="plugin_text_fx">C#</span> === | ||
---- | ---- | ||
<pre | <pre class="code_block_enum"> | ||
public enum MAME_Update | public enum MAME_Update | ||
{ | { |
Revision as of 11:28, 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.
Variables
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, }