|
@@ -92,6 +92,7 @@ interface
|
|
|
|
|
|
|
|
|
TWinResourceFile = class(TResourceFile)
|
|
|
+ procedure PostProcessResourcefile(const s : ansistring);override;
|
|
|
end;
|
|
|
|
|
|
|
|
@@ -1710,6 +1711,25 @@ implementation
|
|
|
end;
|
|
|
|
|
|
|
|
|
+{****************************************************************************
|
|
|
+ TWinResourceFile
|
|
|
+****************************************************************************}
|
|
|
+
|
|
|
+procedure TWinResourceFile.PostProcessResourcefile(const s : ansistring);
|
|
|
+var
|
|
|
+ f : file;
|
|
|
+ w : word;
|
|
|
+begin
|
|
|
+{$ifdef arm}
|
|
|
+ assign(f,s);
|
|
|
+ reset(f,1);
|
|
|
+ w:=COFF_MAGIC;
|
|
|
+ blockwrite(f,w,2);
|
|
|
+ close(f);
|
|
|
+{$endif arm}
|
|
|
+end;
|
|
|
+
|
|
|
+
|
|
|
{*****************************************************************************
|
|
|
Initialize
|
|
|
*****************************************************************************}
|