28 lines
1.5 KiB
MQL5
28 lines
1.5 KiB
MQL5
|
//+------------------------------------------------------------------+
|
||
|
//| MyComment.mqh |
|
||
|
//| Copyright 2020, MetaQuotes Software Corp. |
|
||
|
//| https://www.mql5.com |
|
||
|
//+------------------------------------------------------------------+
|
||
|
#property copyright "Copyright 2020, MetaQuotes Software Corp."
|
||
|
#property link "https://www.mql5.com"
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| defines |
|
||
|
//+------------------------------------------------------------------+
|
||
|
// #define MacrosHello "Hello, world!"
|
||
|
// #define MacrosYear 2010
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| DLL imports |
|
||
|
//+------------------------------------------------------------------+
|
||
|
// #import "user32.dll"
|
||
|
// int SendMessageA(int hWnd,int Msg,int wParam,int lParam);
|
||
|
// #import "my_expert.dll"
|
||
|
// int ExpertRecalculate(int wParam,int lParam);
|
||
|
// #import
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| EX5 imports |
|
||
|
//+------------------------------------------------------------------+
|
||
|
// #import "stdlib.ex5"
|
||
|
// string ErrorDescription(int error_code);
|
||
|
// #import
|
||
|
//+------------------------------------------------------------------+
|