forked from nique_372/FullMt5McpByLeo
32 lines
No EOL
1.4 KiB
MQL5
32 lines
No EOL
1.4 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| Main.mqh |
|
|
//| Copyright 2026, Niquel Mendoza. |
|
|
//| https://www.mql5.com/ |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "Copyright 2026, Niquel Mendoza."
|
|
#property link "https://www.mql5.com/"
|
|
#property strict
|
|
|
|
#ifndef SIMPHASH_SRC_ENUM_REG_MAIN_MQH
|
|
#define SIMPHASH_SRC_ENUM_REG_MAIN_MQH
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
#include "Table.mqh"
|
|
#include <TSN\\MQLArticles\\Utils\\EnumTemplate.mqh>
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
namespace TSN
|
|
{
|
|
TSN_MQLARTICLES_ENUM_REG_TEM(FullMt5Mcp, g_fullmt5mcpbyleo_enum_reg_seeds, g_fullmt5mcpbyleo_enum_reg_values, g_fullmt5mcpbyleo_enum_reg_hashes, FULLMTCPMCP_ENUMREG_BUCKET_SIZE, FULLMTCPMCP_ENUMREG_TABLE_SIZE)
|
|
|
|
// Mod val..
|
|
static bool CEnumRegFullMt5Mcp::RunDinyamics(void)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
#endif // SIMPHASH_SRC_ENUM_REG_MAIN_MQH |