Do anyone know MQL has functions to get and set the states of hardware ?

 

According to my knowledge, MQL is a subset of C language. And I know C language has functions to get and set the states of hardware,

for example:

int inport(int portid)

void outport(int port,int value)

int biosequip(void)

Do anyone know MQL havs such functions?

Can anyone with kindness help me?

Thanks a lot.

 
lserjt:

According to my knowledge, MQL is a subset of C language. And I know C language has functions to get and set the states of hardware,

for example:

int inport(int portid)

void outport(int port,int value)

int biosequip(void)

Do anyone know MQL havs such functions?

Not natively, no.
 
lserjt: According to my knowledge, MQL is a subset of C language. And I know C language has functions to get and set the states of hardware,
While mql4 is a subset of C, it does not run natively, only interpretively in the mql4 sandbox, there is no mql4 to EXE. There are no access outside the sandbox except through DLL calls.
Reason: