Atozed Forums
Order of IWRtlFix Unit - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: Order of IWRtlFix Unit (/thread-4108.html)



Order of IWRtlFix Unit - joelcc - 05-03-2024

Can you please tell me which would be the correct order?   Should FastMM4 come before IWRtlFix or After it?

uses
  FastMM4,
  IWRtlFix,



or 


uses
  IWRtlFix,
  FastMM4,



RE: Order of IWRtlFix Unit - jeroen.rottink - 05-03-2024

I use

Code:
uses
  FastMM4,
  IWRtlFix


The Intraweb app wizard also creates the units in this order.

Code:
uses
  FastMM4,
  IWRtlFix,
  IWJclStackTrace,
  IWJclDebug,
  IWStart,
  Unit1 in 'Unit1.pas' {IWForm1: TIWAppForm},
  ServerController in 'ServerController.pas' {IWServerController: TIWServerControllerBase},
  UserSessionUnit in 'UserSessionUnit.pas' {IWUserSession: TIWUserSessionBase};