Older Newer
Tue, 31 Aug 2021 03:07:34 . . . . SyneRyder [Improve example and description, note required version]


Changes by last author:

Added:
= FMC_TARGET =

Requires FM version 1.0 Beta9g MT4 or newer

== Syntax ==

int FMC_TARGET

== Description ==

Integer constant set by FilterMeister to 32 for 32-bit plugins, and 64 for 64-bit plugins. Only available from version FM 1.0 Beta9g MT4 onwards.

== Example ==

<code>

%fml

ForEveryTile:

{

Info("This is a %d-bit plugin", FMC_TARGET);

return true;

}

</code>