JsonParserByLeo/Src/DLL/Main.mqh

35 lines
1.4 KiB
MQL5
Raw Permalink Normal View History

2026-08-03 09:31:50 -05:00
//+------------------------------------------------------------------+
//| 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 JSONPARSERBYLEO_SRC_DLL_MAIN_MQH
#define JSONPARSERBYLEO_SRC_DLL_MAIN_MQH
// JSONPARSERBYLEO_DLL
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
#ifdef JSONPARSERBYLEO_DLL_AVX2
2026-08-03 12:14:49 -05:00
/*
bool __stdcall JsonParserResolve(const uint8_t* m_raw, const int len, int* m_last_err, int* m_cinta_pos,
int* m_pos, const int m_offset, int64_t* m_cinta, int* m_index)
*/
2026-08-03 09:31:50 -05:00
//----
#import "JsonParserByLeo-Avx2.dll"
2026-08-03 12:14:49 -05:00
bool JsonParserResolve(const uint8_t& m_raw[], const int len, int& m_last_err, int& m_cinta_pos,
int& m_pos, const int m_offset, int64_t& m_cinta[], int& m_index[]);
2026-08-03 09:31:50 -05:00
#import
#endif // JSONPARSERBYLEO_DLL_AVX2
//---
#endif // JSONPARSERBYLEO_SRC_DLL_MAIN_MQH
//+------------------------------------------------------------------+