"Get Happy!" performed by H ZETTRIO 【Official MV】 ://youtubetv.atspace.cc/?sop:v/697uIRPdR-c!UUn-CFRcCkp03U8Xw0_XufdA#MIX ://youtube.com/embed/697uIRPdR-c
【4K】Ebisu illumination + Phil Sheeran - The Rose ://youtubetv.atspace.cc/?sop:v/34Yd_F38g6k!RD34Yd_F38g6k!tq-kCsyigus!RDtq-kCsyigus#MIX ://youtube.com/embed/34Yd_F38g6k
Please use the DLL, DLL configuration for DLL eas, otherwise our programmer get set everything for only 150usd. though team viewer or anydesk, , max time, 2 to 5 minutes to finish, let us know when you fixed this.
You should activate the dll on the ea and also activate the dll patch for the licence. ie, dll patch to reg of pc or vps and then the complete setfile , as exactly our settings aill appear from the DLL library and sync with your licence to work. then you can only change lot size or pair, but the default settings has exactly our settings, You should put the EX4s on only GBPUSD 5 minutes chart.
Also make sure your pc or vps has latest java installed
/** Simple example of native library declaration and usage. */ public class Main { public interface simpleDLL extends Library { simpleDLL INSTANCE = (simpleDLL) Native.loadLibrary( (Platform.isWindows() ? "simpleDLL" : "simpleDLLLinuxPort"), simpleDLL.class); // it's possible to check the platform on which program runs, for example purposes we assume that there's a linux port of the library (it's not attached to the downloadable project) byte giveVoidPtrGetChar(Pointer param); // char giveVoidPtrGetChar(void* param); int giveVoidPtrGetInt(Pointer param); //int giveVoidPtrGetInt(void* param); int giveIntGetInt(int a); // int giveIntGetInt(int a); void simpleCall(); // void simpleCall(); }
public static void main(String[] args) {
simpleDLL sdll = simpleDLL.INSTANCE;
sdll.simpleCall(); // call of void function
int a = 3; int result1 = sdll.giveIntGetInt(a); // calling function with int parameter&result System.out.println("giveIntGetInt("+a+"): " + result1);
String testStr = "ToBeOrNotToBe"; Memory mTest = new Memory(testStr.length()+1); // '+1' remember about extra byte for \0 character! mTest.setString(0, testStr); String testReturn = mTest.getString(0); // you can see that String got properly stored in Memory object System.out.println("String in Memory:"+testReturn);
Memory intMem = new Memory(4); // allocating space intMem.setInt(0, 666); // setting allocated memory to an integer Pointer intPointer = intMem.getPointer(0);
int int1 = sdll.giveVoidPtrGetInt(Pointer.NULL); // passing null, getting default result System.out.println("giveVoidPtrGetInt(null):" + int1); int int2 = sdll.giveVoidPtrGetInt(intMem); // passing int stored in Memory object, getting it back //int int2 = sdll.giveVoidPtrGetInt(intPointer); causes JVM crash, use memory object directly! System.out.println("giveVoidPtrGetInt(666):" + int2);
byte char1 = sdll.giveVoidPtrGetChar(Pointer.NULL); // passing null, getting default result byte char2 = sdll.giveVoidPtrGetChar(mTest); // passing string stored in Memory object, getting first letter
> Please use the DLL, DLL configuration for DLL eas, otherwise our programmer get set everything for only 150usd. though team viewer or anydesk, , max time, 2 to 5 minutes to finish, let us know when you fixed this
> Dear > > You should activate the dll on the ea and also activate the dll patch for the licence. ie, dll patch to reg of pc or vps and then the complete setfile , as exactly our settings aill appear from the DLL library and sync with your licence to work. then you can only chan
dllをEAを動かす為アクティベイト、ライセンスの為にdll patchをアクティベイト。
> > Also make sure your pc or vps has latest java installed