Migrated to VS2015

This commit is contained in:
DW
2016-05-10 17:56:39 +03:00
parent 18226cc9e8
commit 8b333f599d
56 changed files with 7292 additions and 213 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TestServer
{
interface IMetaTrader
{
void Print(string msg);
void MessageBoxA(string msg);
string AccountName();
int AccountNumber();
bool IsDemo();
bool IsConnected();
string ErrorDescription(int errorCode);
int OrderSend(string symbol, int cmd, double volume, double price, int slippage, double stoploss, double takeprofit
, string comment, int magic, int expiration, int arrow_color);
bool OrderClose(int ticket, double lots, double price, int slippage, int color);
}
}