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

%fml

ForEveryTile:
{
  Info("This is a %d-bit plugin", FMC_TARGET);
  return true;
}